Click here to Skip to main content
15,884,099 members
Articles / Security / Encryption

Encrypting Editor Notepad Replacement

Rate me:
Please Sign up or sign in to vote.
4.85/5 (50 votes)
28 Jul 2014CPOL80 min read 177K   6.1K   112  
A C# .NET 3.5 (Win7) Windows Forms Application with source code
@echo off
prompt $$$S
echo.
echo Executing DevInstall.cmd - As used in the original development

echo.
echo Create Install CryptPad Release

set src=%USERPROFILE%\Documents\USB\FTClark\HTML\Frank-T-Clark.com\Professional\Papers\CryptPad
set dest=CryptPad\bin

if exist %src% goto :ok

echo.
echo Original development location does not exist!

echo.
pause
goto :eof

:ok

del *.1
del *.2
del *.3
rd /s /q %dest%\..\bin\debug
rd /s /q %dest%\..\obj
del %dest%\Release\CryptPad.exe.config
del %dest%\Release\CryptPad.pdb

copy CryptPadAdd.reg %dest%\Release\
copy CryptPadAddXP.reg %dest%\Release\
copy CryptPadDelete.reg %dest%\Release\
copy CryptPadInstall.cmd %dest%\Release\
copy CryptPadAddAdmin.reg %dest%\Release\
copy CryptPadDeleteAdmin.reg %dest%\Release\
copy CryptPadInstallAdmin.cmd %dest%\Release\

del %src%\*.1
del %src%\*.2
del %src%\*.3

copy %src% %dest%\Release\
del %dest%\Release\*.zip
del %dest%\Release\*.1
del %dest%\Release\*.2
del %dest%\Release\*.3

cd %dest%\Release\

echo.
echo Perform normal install
CryptPadInstall.cmd

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer IAUA End Time Ministry
United States United States
I am a retired Software Systems Design Engineer experienced with IEEE standards and the entire IEEE software development life cycle. Concept Exploration, Requirements, Design, Implementation, Test, Installation and Checkout, Operation and Maintenance. I enjoy working with people and solving customer problems.

I am currently a writer for my personal ministry: IAUA End Time Ministry

Comments and Discussions