To deploy a software update:
\\AD2\test\\AD2\test\COMMON\ProdSW\Windows File Explorer:
T:\\AD2\testINTRANET\[your-username]Once mapped successfully, you'll see T: drive appear in File Explorer with access to the test share folders.
Command Line:
net use T: \\AD2\test /persistent:yes
PowerShell:
New-PSDrive -Name "T" -PSProvider FileSystem -Root "\\AD2\test" -Persist
copy C:\MyFiles\*.BAT \\AD2\test\COMMON\ProdSW\
\\AD2\test\
├── COMMON\
│ ├── ProdSW\ ← Batch files, executables, configs
│ ├── DOS\ ← System files (AUTOEXEC.NEW, CONFIG.NEW)
│ └── NET\ ← Network client updates
├── TS-01\ ← Machine-specific folders
├── TS-02\
└── TS-30\
When you open \\AD2\test\ in Windows Explorer, you'll see the COMMON folder plus numbered folders (TS-01 through TS-30) for each test machine.
| File Type | Destination | Scope | Deployed To |
|---|---|---|---|
| Batch files (.BAT) | \\AD2\test\COMMON\ProdSW\ |
All machines | C:\BAT\ |
| Executables (.EXE) | \\AD2\test\COMMON\ProdSW\ |
All machines | C:\ATE\ |
| Config files (.CFG) | \\AD2\test\COMMON\ProdSW\ |
All machines | C:\ATE\ |
| System files (.NEW) | \\AD2\test\COMMON\DOS\ |
All machines | Staged for reboot |
| Machine-specific | \\AD2\test\TS-XX\ProdSW\ |
Single machine | C:\BAT\ and C:\ATE\ |
\\AD2\test\COMMON\ProdSW\The file copy should complete instantly. You'll see the new file appear in the ProdSW folder with the current date and time.
| Action | Time |
|---|---|
| Copy to AD2 | Instant |
| AD2 → NAS sync | 0-15 minutes |
| NAS → DOS machine | Next reboot |
For urgent updates: Ask test staff to reboot machine or manually run NWTOC.BAT
Solutions:
INTRANET\usernameping 192.168.0.6If the network path is not accessible, Windows will display an error: "\\AD2\test is not accessible. You might not have permission to use this network resource."
Check:
dir \\AD2\test\COMMON\ProdSW\FILENAME.BATDIR T:\COMMON\ProdSW\ on DOS machineCheck:
ping 192.168.0.9Use:
MYFILE.BATFILENAME.EXTMY_FILE.BATFILE_20260119.BATAvoid:
MY FILE.BATFILE@#$.BATVERYLONGFILENAME.BATAlways test on TS-30 first:
\\AD2\test\TS-30\ProdSW\Before deploying:
_backup\ folderNotify test staff:
Deployment time: 15 minutes to 24 hours (depending on reboot schedule)
File locations:
Emergency rollback:
copy \\AD2\test\COMMON\ProdSW\_backup\FILE.BAK \\AD2\test\COMMON\ProdSW\FILE.BAT