Search found 13 matches

by btk
29 Nov 2017 11:39
Forum: DOS Batch Forum
Topic: Delete files duplicated
Replies: 1
Views: 2312

Delete files duplicated

Hello
and I'm not finding a way to delete duplicate files in the same folder. I have files that are with the following filename.

file.txt
file(2).txt

it is standard to have (2) in these duplicate files.
How do I delete using batch?
by btk
11 Feb 2015 18:26
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 85490

Re: [code] Batch Clock Widget

Thank you...copy and paste last in Notepad++ now in NOTEPAD and perfect funcionally.



*** My english is soft, i am braziliam sorry any error write ***
by btk
11 Feb 2015 07:36
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 85490

Re: [code] Batch Clock Widget

Dont function.

Viewer image.
I copy and past in notepad, save in clock.cmd and execute.

Image

Solution ?
by btk
22 Dec 2014 08:48
Forum: DOS Batch Forum
Topic: Shutdown Batch
Replies: 16
Views: 11939

Re: Shutdown Batch

Thanks...

I have created...

Code: Select all

@echo off
set /a ShutdownTime=%1*60

IF "%1%"=="off" (
   Shutdown -a
) ELSE (
   shutdown -s -t %ShutdownTime%
)

by btk
11 Dec 2014 06:10
Forum: DOS Batch Forum
Topic: Shutdown Batch
Replies: 16
Views: 11939

Re: Shutdown Batch

Thank you very much.

Now I want to increase the code.

For the parameter I want to cancel the shutdown command.
Ex. "Off.bat off" instead of using a number write "off" and
he run the "Shutdown -a"
by btk
10 Dec 2014 19:08
Forum: DOS Batch Forum
Topic: Shutdown Batch
Replies: 16
Views: 11939

Re: Shutdown Batch

Code: Select all

@echo off
set /a time=%1*60
shutdown -s -t time


saved the file as "off.bat"
I go to the prompt and typed: off 10
However this is not happening at all.

Runs the help menu shutdown command.

where is the error?
by btk
10 Dec 2014 11:41
Forum: DOS Batch Forum
Topic: Shutdown Batch
Replies: 16
Views: 11939

Re: Shutdown Batch

Example please.
by btk
10 Dec 2014 10:21
Forum: DOS Batch Forum
Topic: Shutdown Batch
Replies: 16
Views: 11939

Shutdown Batch

I am in doubt. I want to develop a batch when I enter the time in minutes and the same multiply by 60 and set the shutdown command. Ex .: off.bat 10 Within the batch he take the value 10 multiply by 60 and add the command Shutdown -s -t * value * As is known, the shutdown command only accepts value ...
by btk
01 Oct 2014 07:20
Forum: DOS Batch Forum
Topic: Block file or folder from deletion
Replies: 6
Views: 5283

Re: Block file or folder from deletion

ShadowThief wrote:Yes, you can use the icacls command. http://ss64.com/nt/icacls.html



Perfect !!!!
:D
by btk
01 Oct 2014 06:25
Forum: DOS Batch Forum
Topic: Block file or folder from deletion
Replies: 6
Views: 5283

Re: Block file or folder from deletion

It is possible by command line, change file permissions?
For this is the way I wanted to do.
by btk
30 Sep 2014 21:49
Forum: DOS Batch Forum
Topic: Block file or folder from deletion
Replies: 6
Views: 5283

Block file or folder from deletion

I am researching but I am not able to find a solution to lock file or folder on the command line against exclusion.

Suggestions?
by btk
25 Sep 2014 08:16
Forum: DOS Batch Forum
Topic: Dos command for wol (wake on lan) and sol (sleep on lan)
Replies: 4
Views: 6073

Re: Dos command for wol (wake on lan) and sol (sleep on lan)

I have used, in command line.
http://www.depicus.com/wake-on-lan/wake-on-lan-cmd.aspx
In sintax command line.
wolcmd MacAddress Ip Mask 7
7 is magic pack for ON computer.

For shutdown the remote computer have use, RoboTask in listenner command shutdown.
by btk
17 Apr 2014 21:58
Forum: DOS Batch Forum
Topic: My First Script
Replies: 0
Views: 6370

My First Script

The proposital is : Wait total load windows for total load of process and services. Is code : @echo off @taskkill /f /im explorer.exe > nul @timeout 60 /nobreak > nul @start explorer color 1c echo. echo. echo System Ready to Use !!! echo. echo. @timeout 2 > nul Save is code sugestive name : loadwait...