Classic Shell development was stopped in December 2017. For now the forum remains online as reference, but is read-only. Registration of new users is disabled.
It is currently Sat Sep 13, 2025 4:02 am

All times are UTC - 8 hours [ DST ]


Forum rules


Please, keep discussions on topic and in the right forum. The start menu topics go into the Classic Start Menu forum, etc. This makes it easier for people to locate topics they are looking for.
If you get a satisfactory response to your question, please mark the topic as "solved". Click the green √ button in the bottom-right of the post.



Post new topic Reply to topic  [ 5 posts ] 
Author Message
PostPosted: Tue Oct 15, 2013 7:54 am 
Offline

Joined: Tue Oct 15, 2013 7:49 am
Posts: 4
Looking for some advice on the best way to deploy a classicshell.net configuration to my users. I am currently using group policy to hack the registry entries into the profile, but I think there might be a better way?

Here's what I'm doing right now to force classicshell to use a classic start menu with some other tweaks.

With Group Polcy Manager, create a new policy called "ClassicShell.net"

On windows 2008 R2, run powershell.exe, then execute the following commands

Code:
Import-module grouppolicy

Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu" -ValueName ShowedStyle2 -Type DWORD -value 1

Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName EnableStartButton -Type DWORD -value 1
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName MenuCaption -Type String -value "%computername%"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName MenuStyle -Type String -value "Classic1"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinC1 -Type String -value "Classic Skin"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsC1 -Type String -value "BD80CDB3|C26EAF5C|86F3669C|5225DC46|5D3248DD|E87963C2|80316ABE|"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsW7 -Type String -value "C26EAF5D|5D3248DD|E87963C2|80316ABE|"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName StartButtonType -Type String -value "ClasicButton"



I got these settings out of the registry for my current user after I tweaked the view the way I wanted. Is there a Group Policy snap-in to manage these settings interactively or is this the best practice?

Thanks!

Ron


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 15, 2013 8:05 am 
Offline
Site Admin
User avatar

Joined: Wed Jan 02, 2013 11:38 pm
Posts: 5333
A better approach might be to set the defaults in the HKLM registry. They will apply to all users. Check out the Administrative Settings section in the help.
The next version will have the ability to suppress the initial opening of the settings so you don't have to set "ShowedStyle2" per user.


Top
 Profile  
Reply with quote  
PostPosted: Tue Oct 15, 2013 10:33 am 
Offline

Joined: Tue Oct 15, 2013 7:49 am
Posts: 4
I'll go back and take a closer look at the Administrative section of the docs, I must've missed that.

As a followup on my GPO script, I created three policies, a standard "all computers" policy, and a 2008-r2 only and a 2012 only policy, each with a respective WMI filter to only apply to that operating system. Then I tweaked the settings on 2012 to use the AeroButton for a better experience.

Code:
Import-module grouppolicy

Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu" -ValueName ShowedStyle2 -Type DWORD -value 1

Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName EnableStartButton -Type DWORD -value 1
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName MenuCaption -Type String -value "%computername%"
Set-GPRegistryValue -Name "ClassicShell.net" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName MenuStyle -Type String -value "Classic1"

Set-GPRegistryValue -Name "ClassicShell.net (2008)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinC1 -Type String -value "Classic Skin"
Set-GPRegistryValue -Name "ClassicShell.net (2008)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsW7 -Type String -value "C26EAF5D|5D3248DD|E87963C2|80316ABE|"
Set-GPRegistryValue -Name "ClassicShell.net (2008)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsC1 -Type String -value "BD80CDB3|C26EAF5C|86F3669C|5225DC46|5D3248DD|E87963C2|80316ABE|"
Set-GPRegistryValue -Name "ClassicShell.net (2008)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName StartButtonType -Type String -value "ClasicButton"

Set-GPRegistryValue -Name "ClassicShell.net (2012)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinC1 -Type String -value "Windows 8"
Set-GPRegistryValue -Name "ClassicShell.net (2012)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsW7 -Type String -value "C26EAF5D|5D3248DC|1FC64124|5EA361A2|6EDFA36A|2E838408|22C9A1E2|0663DC39|"
Set-GPRegistryValue -Name "ClassicShell.net (2012)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName SkinOptionsC1 -Type String -value "BD80CDB3|C26EAF5C|86F3669C|5225DC46|5D3248DD|1FC64124|5EA361A2|6EDFA36A|2E838408|22C9A1E2|0663DC39|"
Set-GPRegistryValue -Name "ClassicShell.net (2012)" -key "HKCU\Software\IvoSoft\ClassicStartMenu\Settings" -ValueName StartButtonType -Type String -value "AeroButton"


Top
 Profile  
Reply with quote  
PostPosted: Sun Jan 19, 2014 11:52 pm 
Offline
User avatar

Joined: Thu Jan 03, 2013 12:38 am
Posts: 5374
Classic Shell 4.0.4 introduces Group Policy support for its own settings. The file, C:\Program Files\Classic Shell\PolicyDefinitions.zip includes the policy definitions. If you have an Active Directory domain, extract the files to %logonserver%\sysvol\%userdnsdomain%\policies\PolicyDefinitions\ or whatever your Group Policy Central Store is. For Local Group Policy, extract them to C:\Windows\PolicyDefinitions folder.

_________________
Links to some general topics:

Compare Start Menus

Read the Search box usage guide.

I am a Windows enthusiast and helped a little with Classic Shell's testing and usability/UX feedback.


Top
 Profile  
Reply with quote  
PostPosted: Mon Jan 20, 2014 9:15 am 
Offline

Joined: Tue Oct 15, 2013 7:49 am
Posts: 4
@GauravK thanks for this update, the admx files will make administering these values much easier!


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: Google Adsense [Bot] and 305 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group, Almsamim WYSIWYG Classic Shell © 2010-2016, Ivo Beltchev.
All right reserved.