Search found 57 matches

by hacxx
26 Mar 2016 13:25
Forum: DOS Batch Forum
Topic: Creating an archive batch with embed code
Replies: 3
Views: 4055

Re: Creating an archive batch with embed code

Which properties do you need to keep? You can embed a file easily using many styles of encoding, but they are essentially designed to maintain the integrity of the file itself. Yes, im looking for some type of encoding that preserves the file and extracts it when requested. I also tried hex encodin...
by hacxx
25 Mar 2016 14:12
Forum: DOS Batch Forum
Topic: Creating an archive batch with embed code
Replies: 3
Views: 4055

Creating an archive batch with embed code

Hi,

Is it possible to embed a file in a batch without losing there properties? And be able to extract to a file.

Example:

Code: Select all

@echo off
echo This_is_the_example_code_of_an_image > c:\image.jpg


I tried ascii and plain text but it didn't work out.

Thanks for all the help
by hacxx
12 Sep 2015 17:44
Forum: DOS Batch Forum
Topic: Uninstall the Persistent exes from McAfee on Windows 8.1
Replies: 6
Views: 15075

Re: Uninstall the Persistent exes from McAfee on Windows 8.1

Thanks

There were a few McAfee Drivers that were left behind. Now they are all deleted too.

Download:
http://rghost.net/6pHMWkM4f
by hacxx
09 Sep 2015 13:34
Forum: DOS Batch Forum
Topic: Uninstall the Persistent exes from McAfee on Windows 8.1
Replies: 6
Views: 15075

Re: Uninstall the Persistent exes from McAfee on Windows 8.1

I did try to uninstall using autoruns.exe but i couldn't find the autostart keys.

At first it look suspicious to me and i thought to myself. Am I becoming so dumb or is Microsoft playing hide and seek with me. Yesterday i found the definitive solution.
by hacxx
08 Sep 2015 14:02
Forum: DOS Batch Forum
Topic: Uninstall the Persistent exes from McAfee on Windows 8.1
Replies: 6
Views: 15075

Uninstall the Persistent exes from McAfee on Windows 8.1

This may not apply to you but it seems that by default Windows 8.1 comes with McAfee Antivirus. After using the trial period and you don't want to keep the McAfee Antivirus on your system then you should uninstall using Programs & Settings > Remove or alter a program. After uninstaling the McAfe...
by hacxx
25 May 2015 12:49
Forum: DOS Batch Forum
Topic: Append two commands in a file
Replies: 2
Views: 3080

Re: Append two commands in a file

Thanks ShadowThief
by hacxx
25 May 2015 10:58
Forum: DOS Batch Forum
Topic: Append two commands in a file
Replies: 2
Views: 3080

Append two commands in a file

Commonly to save a result into a file in batch, the cmd needs >

Example:
dir c:\windows\system32 > file.txt

but if i want to append a second command to file.txt how it should be done?

Example:
dir c:\windows\system32 > file.txt
dir c:\windows > file.txt
by hacxx
23 May 2015 12:16
Forum: DOS Batch Forum
Topic: Copying a file without prompting the user
Replies: 6
Views: 6103

Re: Copying a file without prompting the user

Thanks,

I'm using xcopy intro.exe "%userprofile%" /y
by hacxx
22 May 2015 04:47
Forum: DOS Batch Forum
Topic: Copying a file without prompting the user
Replies: 6
Views: 6103

Copying a file without prompting the user

Hi,

What is the best way to copy a file without prompting the user?

I have tried
xcopy intro.exe %userprofile%\intro.exe

but the user needs to specify if it's a folder or a file.

Thanks
by hacxx
23 Apr 2015 03:50
Forum: DOS Batch Forum
Topic: uploading a file using cmd
Replies: 6
Views: 5123

Re: uploading a file using cmd

Thanks for the help. i made it work by tweaking the commands
by hacxx
19 Apr 2015 07:54
Forum: DOS Batch Forum
Topic: uploading a file using cmd
Replies: 6
Views: 5123

Re: uploading a file using cmd

Thanks, it was a helpful CMD example but i got some errors. lcd %temp%\file.txt -> It says "File not found" and it does exist in HD cd home/www -> No such file or directory in server. Also another question is it possible to add time stamp to the file? Example: %temp%\file.txt when upload i...
by hacxx
09 Apr 2015 13:22
Forum: DOS Batch Forum
Topic: uploading a file using cmd
Replies: 6
Views: 5123

uploading a file using cmd

Hello,

What is the method to upload a file or info from a computer.
I tried FTP cmd but i was unsuccessful.

Any sugestions?

Thanks