Windows cannot find C:\Users\%username%\Local\Temp\Low
hi all,
i have rds environment folders redirected.
but when user wants save file windows reports dialog saying "windows cannot find c:\users\%username%\local\temp\low".
at same time users not able print - ie in protected mode saves temp folder before printing.
when check path - none of users have local folder under c:\users\%username%
do of guys have idea how make automatically create folder, or redirect properly?
thank guys.
//potestas
microsoft: mcp, mcts, mcitp: sa, mcitp: ea || ciw: associate, security professional || comptia: a+, server+, linux+ || citrix: cca on xenapp || hp: asp, asp:smb || astaro: aca, ace
i ran same issue. way found fix issue have logon script create folder , set correct permissions. here vbs code used:
set objfilesys = createobject( "scripting.filesystemobject" ) set objwshshell = createobject( "wscript.shell" )
if not objfilesys.folderexists(objwshshell.expandenvironmentstrings("%temp%") &"\low") then
objfilesys.createfolder(objwshshell.expandenvironmentstrings("%temp%") &"\low") objwshshell.run objwshshell.expandenvironmentstrings("%systemroot%") & "\system32\icacls.exe " & objwshshell.expandenvironmentstrings("%temp%") & "\low /setintegritylevel (oi)(ci)low" end if
i used information from kb973479 write code
Windows Server > Remote Desktop Services (Terminal Services)
Comments
Post a Comment