Just the one
So NAS1 will have a text file called nas1.text & in thats text file the host name called NAS1 ?
Search found 7 matches
- 17 Dec 2012 06:56
- Forum: DOS Batch Forum
- Topic: HELP PLZ: Dos to call host name in text file
- Replies: 3
- Views: 3692
- 17 Dec 2012 06:17
- Forum: DOS Batch Forum
- Topic: HELP PLZ: Dos to call host name in text file
- Replies: 3
- Views: 3692
HELP PLZ: Dos to call host name in text file
We currently have a number of network devices for example NAS1 NAS2 They all have software on, that we use to go onsite to install software via a scrip, it would be nice to have a batch script to call the host name in the text file to save me editing 10+ devices with :script net use Z: /d /y net use...
- 30 Oct 2012 04:21
- Forum: DOS Batch Forum
- Topic: help please ! To check O/S and version and goto menu
- Replies: 3
- Views: 4430
help please ! To check O/S and version and goto menu
This is what i have so far, how can i get it to check if it is 32 or 64 bit? thanks for any help echo ver | find "2003" > nul if %ERRORLEVEL% == 0 goto ver_2003 ver | find "XP" > nul if %ERRORLEVEL% == 0 goto ver_xp ver | find "2000" > nul if %ERRORLEVEL% == 0 goto ver_...
- 26 Mar 2012 04:16
- Forum: DOS Batch Forum
- Topic: re-read - IE proxy settings from batch file
- Replies: 2
- Views: 5388
re-read - IE proxy settings from batch file
People. I have a issue where i will run this batch file ( Which works great ) but when the proxy settings are re-applied, the only way to get IE to read the new proxy settings is to reload IE. Is there a way to get IE to re-read the registry? @ECHO OFF cls set reg=HKCU\Software\Microsoft\Windows\Cur...
- 21 Mar 2012 09:01
- Forum: DOS Batch Forum
- Topic: PAUSE SCRIPT In WIN 7 & WIN XP Issues....
- Replies: 4
- Views: 6059
Re: PAUSE SCRIPT In WIN 7 & WIN XP Issues....
WOW - Thanks for your help!
I have an issue, that the proxy server only takes effect if the IE is restarted. Is there a way to enforce this without restarting IE????
Thanks
I have an issue, that the proxy server only takes effect if the IE is restarted. Is there a way to enforce this without restarting IE????
Thanks
- 21 Mar 2012 05:33
- Forum: DOS Batch Forum
- Topic: PAUSE SCRIPT In WIN 7 & WIN XP Issues....
- Replies: 4
- Views: 6059
PAUSE SCRIPT In WIN 7 & WIN XP Issues....
Hello all. I have a issue with that we have a Proxy server hard coded into out IE, but when a user log's into a WiFi hotspot, the user is not able to access the Hotspot page to enter the username & password ( do to our proxy settings ) I can up with a script to disable our proxy settings for 2 m...
- 06 Mar 2012 08:20
- Forum: DOS Batch Forum
- Topic: Dislplay PC - CPU - RAM With DOS via Bat file- Help Needed
- Replies: 2
- Views: 8997
Dislplay PC - CPU - RAM With DOS via Bat file- Help Needed
I have a script to copy files from my nas to a local machine, and install office 2007. Before the script runs, i would like it to display the CPU speed and RAM.Then if the user wants to run the script press continue, or No for ( run the Script later ) the is on xp and win 7, thanks for any help @ech...