This script is also useful for deleting user profiles from Citrix servers (since they could be C:\Documents and Settings\UserID, C:\Documents and Settings\UserID.DOMAIN, C:\Documents and Settings\UserID.old etc - last usually happens if somebody renames them)
It's a bit tricky since rmdir doesn't support wildcards.
Also , "CD" doesn't work with UNC path, so you either can do the registry fix described here or just use pushd /popd as I did.
========
@ECHO OFF
rem Usage : DelCtxprof.cmd UserID
IF (%1)==() GOTO ERR
@ECHO ON
Pause This batch file will delete all profiles that start with "%1%" from all Citrix servers. If you don't want to do it, press Ctrl-C
pushd "\\CitrixServer1\C$\Documents and settings\"
for /d %%a in (%1*) do rd /s /q "%%~a"
popd
rem Do the rest of your citrix servers there
GOTO END
:ERR
ECHO Please specify User ID !!!
:END
========
Search This Blog
Labels
ESXi
(3)
ESXi 4.1
(1)
ESXi 5
(3)
ESXi 5 nested
(1)
ESXi installation fatal error
(1)
Exchange
(2)
Exchange 2010
(1)
Extpart.exe
(1)
Extpart.exe error
(1)
NIC Team
(1)
RDP
(1)
Scripts
(1)
vCenter
(1)
VirtualBox
(1)
VMware resize disk
(1)
Windows 7 doesn't boot
(1)
Windows fixes
(5)
Windows XP 2 CPU
(1)
Windows XP VM multiple CPU
(1)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment