Search found 26 matches

by zask
13 Oct 2017 10:16
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

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 ...
by zask
06 Oct 2017 20:29
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

Re: Enabling special characters in encrypter.

Trying to break some old habits, I made more changes.

http://lpaste.net/4185307173091278848
by zask
02 Oct 2017 08:40
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

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...
by zask
01 Oct 2017 07:50
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

Re: Enabling special characters in encrypter.

I can make side comments if it helps
by zask
30 Sep 2017 17:36
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

Re: Enabling special characters in encrypter.

It's because autocorrect.
by zask
30 Sep 2017 17:36
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

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.
by zask
30 Sep 2017 17:29
Forum: DOS Batch Forum
Topic: Enabling special characters in encrypter.
Replies: 10
Views: 6532

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...
by zask
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: 13331

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...
by zask
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: 13331

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...
by zask
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: 13331

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...
by zask
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: 13331

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...