Jaan Posted January 25, 2022 Posted January 25, 2022 Hi all, Anybody else experiencing this? It is happening on all domain accounts (Even IT admins). We have redirected start menus and have lots of instances today where the Start menu is very slow and unresponsive. You can "Search" from it, in some cases clicking on a icon does nothing....... Local profiles Very odd.
Synkrox Posted January 25, 2022 Posted January 25, 2022 If it helps with a solution, I cache my start menu locally and redirect to there rather than across the network.
Jaan Posted January 25, 2022 Author Posted January 25, 2022 If it helps with a solution, I cache my start menu locally and redirect to there rather than across the network. interesting. How you go about doing this? Cheers
Synkrox Posted January 25, 2022 Posted January 25, 2022 Create a folder on your server with appropriate permissions then mirror it with machine startup script. (I use netlogon folder) - Then in GP redirect the folders to the local paths. Relevant bit of script: REM COPY START MENU robocopy \\air\netlogon\network\start10 c:\network\start10\ /SEC /MIR REM COPY DESKTOP robocopy \\air\netlogon\network\desktop10 c:\network\desktop10\ /SEC /MIR REM COPY RESOURCES robocopy "\\air\netlogon\network\resources" "c:\network\resources" /SEC /MIR REM COPY START MENU ICONS robocopy "\\air\netlogon\network\start10\icons" "c:\programdata\microsoft\windows\start menu" /MIR REM UNBLOCK FILES JUST COPIED powershell -Command "& {dir c:\network -Recurse | Unblock-File}" powershell -Command "& {dir 'c:\programdata\microsoft\windows\start menu' -Recurse | Unblock-File}" 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now