Search found 233 matches

by Dos_Probie
29 Nov 2013 16:22
Forum: DOS Batch Forum
Topic: ~ Title bar Date & Clock help ~[ SOLVED ]
Replies: 13
Views: 9762

Re: ~ Title bar Date & Clock help ~

Einstein, the 1st code you posted showed the date and time in title but now your updated code is not working at all now.. must be a typo somewhere.
by Dos_Probie
29 Nov 2013 14:00
Forum: DOS Batch Forum
Topic: ~ Title bar Date & Clock help ~[ SOLVED ]
Replies: 13
Views: 9762

Re: ~ Title bar Date & Clock help ~

Thanks for the Help Einstein! , the title clock lags about 20 sec behind the system clock (does not sync up) for some reason..DP
by Dos_Probie
29 Nov 2013 06:45
Forum: DOS Batch Forum
Topic: ~ Title bar Date & Clock help ~[ SOLVED ]
Replies: 13
Views: 9762

~ Title bar Date & Clock help ~[ SOLVED ]

Got this below code that sets the current day, date and (fixed) time to the title bar, would like to have the clock active where the minute would change and not be fixed once the batch menu stays up, any ideas on a easy way to accomplish this? Thanks for the help..DP @echo off :: Output day, date an...
by Dos_Probie
16 Nov 2013 13:44
Forum: DOS Batch Forum
Topic: Batch file to open multiple tabs in Internet Explorer
Replies: 4
Views: 17242

Re: Batch file to open multiple tabs in Internet Explorer

If you want to open multiple pages that automatically load up every time you start Internet Explorer.. @echo off set primary=http://www.bing.com/ set secondary1=http://www.dostips.com/ reg add "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /t REG_SZ /d "%pr...
by Dos_Probie
16 Nov 2013 08:05
Forum: DOS Batch Forum
Topic: Change a registry setting
Replies: 2
Views: 2995

Re: Change a registry setting

Have you tried right clicking and run as admim? also some of the global keys that are in use you may get a "cannot Import accessing the registry" error that prevents you from making any changes, Check permissions by right clicking on the key - Permissions - Advanced - under (account name) ...
by Dos_Probie
29 Oct 2013 15:48
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 84587

Re: [code] Batch Clock Widget

carlos wrote:@Dos_Probie: updated the code for use wide numbers.


Like the Bigger readout Carlos, good job (instead of the digital readout) and since you had a partial time in the title block I revised mine to show the current year of 2013. DP :D
by Dos_Probie
29 Oct 2013 12:47
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 84587

Re: [code] Batch Clock Widget

carlos wrote:@Aacini: Very good fork. I will wait the timer and alarm.

Also, I posted a tiny model.


Carlos, Like what you did on the Mini Clock, Fits well with my sidebar gadgets, hey
is there any way to make the time font heavier and keep with same size? DP
by Dos_Probie
28 Oct 2013 19:55
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 84587

Re: [code] Batch Clock Widget

A new model of the MxPower clock is here! This one have 12-hour format, two sizes (normal and small) and 4 levels of brightness, all of them selectable via parameters. You may get a small help via /? switch, for example: C:> clock /? Clock.bat [/W] [/12] [/S] [/D] [/B:#] [/T:m] [/A:hh:mm] /W Show w...
by Dos_Probie
28 Oct 2013 18:26
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 84587

Re: [code] Batch Clock Widget

carlos wrote:@Dos_Probie: thanks. I added your changes to the code. I am thinking add the 12 hours version and also a calendar of the month.


Sounds good Carlos, btw check your pm..DP 8)
by Dos_Probie
28 Oct 2013 14:01
Forum: DOS Batch Forum
Topic: [code] Batch Clock Widget
Replies: 51
Views: 84587

Re: [code] Batch Clock Widget

Good Job Carlos!! , Nice graphics with the 24h clock, I revised your Model1 by fixing the jule typo error to july and added upper case to each Month and also the Day of the week because of being a proper English noun (I thing its lower in Spanish) and also have it stand out better. Only other thing ...
by Dos_Probie
24 Oct 2013 04:54
Forum: DOS Batch Forum
Topic: [ SOLVED ] ? Problem with batch creating vbs ?
Replies: 3
Views: 4002

Re: ? Problem with batch creating vbs ?

Thanks Foxi! yes the problem was with using a single precent sign (%)
Working now..DP :wink:

Code: Select all

echo WshShell.Sendkeys "%%FC" >> "%tmp%\theme.vbs"
by Dos_Probie
24 Oct 2013 03:41
Forum: DOS Batch Forum
Topic: [ SOLVED ] ? Problem with batch creating vbs ?
Replies: 3
Views: 4002

[ SOLVED ] ? Problem with batch creating vbs ?

Have this Batch file that I need to add some vbs script to then run it from the temp folder everything copies to temp except this one line: echo WshShell.Sendkeys "%FC" >> "%tmp%\theme.vbs" Thanks for any help on this..DP Here is the complete code.. @echo off echo Set WshShell = ...
by Dos_Probie
30 Sep 2013 05:41
Forum: DOS Batch Forum
Topic: Batch file / command line disable UAC without restart?
Replies: 6
Views: 12555

Re: Batch file / command line disable UAC without restart?

@Adrianvdh Your code is basically a Admin check if the current user has admin privileges prior to running the batch file, I believe the OP wanted a way for the end user to just run his batch without doing anything extra, my solution will provide that by elevating the permissions level without the ac...
by Dos_Probie
29 Sep 2013 19:26
Forum: DOS Batch Forum
Topic: Batch file / command line disable UAC without restart?
Replies: 6
Views: 12555

Re: Batch file / command line disable UAC without restart?

Just run your batch as admin with this jscript added.. @set @jscript=1/* @echo off&setlocal :: ### ADMIN CHECK.. reg query "hku\S-1-5-19" >nul 2>&1 || ( @cscript //e:jscript //nologo "%~f0" "%~f0" goto :eof ) < BATCH CODE HERE> :eof // ### RUN AS ADMIN.. */ var ...
by Dos_Probie
21 Sep 2013 07:52
Forum: DOS Batch Forum
Topic: How to replace windows 7 system files ?
Replies: 5
Views: 5181

Re: How to replace windows 7 system files ?

One thing the OP needs to be aware of is the fact that even if he or she is successful patching a system file
it's not a permanment soulution as Windows updates or future service packs will just change it back again..DP 8)