Search found 26 matches
- 13 Oct 2017 10:16
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Re: Enabling special characters in encrypter.
thanks i figured it out but i still cant get "!" to work -.- REM "Batch text file encrypter" REM UPDATES ON ENCRYPTER REM ; Variables change with each encryption. REM ; Generates a separator key from random. REM ; Creates entirely new encryption scheme each run. REM ; Decryption ...
- 10 Oct 2017 11:44
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
- 06 Oct 2017 20:29
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
- 02 Oct 2017 21:36
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
- 02 Oct 2017 08:40
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Re: Enabling special characters in encrypter.
I basically want to make it encrypt all possible characters. Is this your question? You can't. Currently Unicode lists 136690 different characters. Batch does only support a little subset of them. Depending on the locale settings on a computer this subset differs for characters that exceed the ASCI...
- 01 Oct 2017 07:50
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Re: Enabling special characters in encrypter.
I can make side comments if it helps
- 30 Sep 2017 17:36
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Re: Enabling special characters in encrypter.
It's because autocorrect.
- 30 Sep 2017 17:36
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Re: Enabling special characters in encrypter.
Mybad for the typo i can't edit the post because the
Website cuts off the right edge on my small phone because the code is to wide.
I basically want to make it encrypt all possible characters.
Website cuts off the right edge on my small phone because the code is to wide.
I basically want to make it encrypt all possible characters.
- 30 Sep 2017 17:29
- Forum: DOS Batch Forum
- Topic: Enabling special characters in encrypter.
- Replies: 10
- Views: 7518
Enabling special characters in encrypter.
Hello, I borrowed some code and modified it for better use, this is a letter substitution encrypter than can encrypt entire text files. How would I make it possible to use characters such As &^*! ...etc You basically basically type a multilined message in a text file, start the encryptor, type t...
- 15 May 2017 12:58
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
Re: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
Instead of placing the script into the startup folder use shortcuts. You can adjust the window style ("Run:") to Minimized in their properties. As I told you - alternatives are - Running directly from VBScript - Running as scheduled task Steffen I understand, I simply just wanted the proc...
- 15 May 2017 10:23
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
Re: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
A batch file always runs in a console window. As you know you can hide it with a VBScript snippet. So what you could do is to run it directly from a VBScript. (I wonder what hiding a batch window is even good for. If you don't want it you should rather move to another language.) Your right there is...
- 15 May 2017 10:17
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
Re: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
A batch file always runs in a console window. As you know you can hide it with a VBScript snippet. So what you could do is to run it directly from a VBScript. (I wonder what hiding a batch window is even good for. If you don't want it you should rather move to another language.) Steffen I use multi...
- 15 May 2017 09:36
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
Re: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
Nvm my question I think I figured it out
- 13 May 2017 18:28
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
- 13 May 2017 17:46
- Forum: DOS Batch Forum
- Topic: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
- Replies: 20
- Views: 16149
Re: Run batch file invisible on startup with uac, if uac fails to obtain admin, continue batch file after uac is closed
Thank you I'll test it as soon as possible, your really a smart coder, thumbs up. Here's another question, is it possible to make it run as administrator every time as long as it was ran as administrator at least once? Might or might not be possible.... This would be very useful for a variety of scr...