Registry key to change desktop icon size

By default Windows 7 has desktop icon view set to Medium. I want to change the default user NTuser.dat hive as part of SCCM build so that each new user has small size by default, but can change if they wish (hence can't do it as a GPO)
Does anyone know the registry key(s) to change?
Ian Burnell, London (UK)

Hi,
This view size is controlled by HKU specific user registry. Thus it can't be mapping to another user account.
If you insist, there is a complex workaround(However I wouldn't like to recommend you use this method):
Copy the following registry value to place another user's registry.
HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags
HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\BagMRU
Note: It can't be imported, just copy its value.
Karen Hu
TechNet Community Support

Similar Messages

  • Gnome: changing application icon size

    Before gnome 3.10,according to wiki, to change app icon size it was necessary to edit "/usr/share/gnome-shell/theme/gnome-shell.css".
    From upgrading to 3.10 and now with 3.12,it seems it doesn't work anymore and so I have to keep large icons on my shell.
    has anyone experienced the same issue?

    If you downsize the panel, the icons will be downsized too..
    There is also the drawer applet, which can contain the icons...

  • Change desktop icon image

    Can the graphic used in a desktop icon be changed? Forgive me if this the wrong forum. Are other good general Apple forums available?

    Hi!
    Are you attempting to use the icon from one file to paste to another file? If so, try this:
    Highlight the file with the icon you want to use and key in cmd+i to bring up Get Info. Click on the icon at the top of the Get Info wondow and key in cmd+c to copy it. Highlight the file that you want to paste the icon to, do cmd+i, highlight the icon in the get Info window, then key in cmd+v to paste it to this file. The icon will be the proper size to begin with, since it was a file icon to begin with. (The way shown in the preceding post should also work, but insure that you highlight and copy the graphic icon image first, before trying to paste it into the other file.)
    If you want to use a custom graphic that is not an icon, I found a simple way to convert file preview images to icons using Pic2Icon. I keep it in the Dock and drop a graphics file (or folder's worth of graphic files) on it and it immediately changes the generic icons to icons with the graphics on them. This freeware utility was developed by SugarCube Software, but is no longer available on the web, even though Googling will provide plenty of links. However, they were nice enough not to originally restrict it's redistribution and I have a copy on my iDisk if you want it. The link is posted below and the archived file will immediately begin downloading if you click on it. (I'll leave the link active for a few days or so before disabling it.)
    http://homepage.mac.com/majordadusma/filechute/pic2icon.dmg.sit
    You can also create such preview icons via Photoshop, if you have it...
    Gary
    1GHz DP G4 Quicksilver 2002, 400MHz B&W rev.2 G3, Mac SE30   Mac OS X (10.4.5)   5G iPod, Epson 2200 & R300 & LW Select 360 Printers, Epson 3200 Scanner

  • How can you lock the desktop icon size?

    On my Macbook Pro (10/6.7) the icons on the desktop sometimes change size. I'm not doing anything deliberate to cause this. When the icons change size, I can use View Options to make them the right size again, but it's a pain to have to keep doing that, especially since some icons don't always return to their original positions on the desktop. Is there any to prevent the desktop icons from changing size?

    They shrink when you're on the desktop and "pinch" two fingers on the trackpad closer together.  If you "spread" two fingers apart, they'll get bigger.
    You can disable in System Preferences > trackpad > Two Fingers > uncheck Pinch Open & Close.
    Regards,
    Captfred

  • How to change desktop icons?

    Hi guys,
    Just wondering if someone can help me out here? Am trying to change the desktop 'icons' in my 20" imac? (I want to change the icon of the HDD and some folders) Can someone help me out? Cheers

    If you already have a picture that you want to use as an icon, open it in a picture viewing app (Preview, for instance), and copy it. Now click on the icon of the folder or disk that you want to change and press Command-I (or choose "Get Info" from the Finder's File menu). Click on the icon in the top left-hand corner: you can now paste the picture onto it.
    More info here: http://www.apple.com/support/mac101/customize/6/
    Have fun,
    Michael

  • Take ownership of a registry key, and change permissions

    Hello,
    I am writing a powershell script to configure a W2008-R2 Server. In one of the steps, I need to take ownership of an existing registry key, and then give full control permissions to the administrators.
    I have done this:
    $acl = Get-Acl $key
    $me = [System.Security.Principal.NTAccount]"$env:userdomain\$env:username"
    $acl.SetOwner($me)
    $person = [System.Security.Principal.NTAccount]"Administrators"
    $access = [System.Security.AccessControl.RegistryRights]"FullControl"
    $inheritance = [System.Security.AccessControl.InheritanceFlags]"None"
    $propagation = [System.Security.AccessControl.PropagationFlags]"None"
    $type = [System.Security.AccessControl.AccessControlType]"Allow"
    $rule = New-Object System.Security.AccessControl.RegistryAccessRule($person,$access,$inheritance,$propagation,$type)
    $acl.AddAccessRule($rule)
    Set-Acl $key $acl
    But it fails in "set-acl" command, with the message "Set-Acl : Requested registry access is not allowed."
    Any ideas of how to do this? or if it is even possible?
    Thank you!

    Here is the code to take ownership of a registry key.  You first need to set the SeTakeOwnership permission on your process
    The enable-privilege function is taken from a posting by Lee Holmes (http://www.leeholmes.com/blog/2010/09/24/adjusting-token-privileges-in-powershell/), but
    I've been meaning to get around to tidy it up a bit for my purposes.  Perhaps this thread is the motivation I need to do this.  I should also note that the PowerShell Community Extensions has cmdlets to work with tokens already.  
    I also never tested whether you can do the PowerShell native methods of get-acl set-acl if you set the token.  I don't have time to play with that now, but if you want to try it and let us know if it works that would be great.  The opensubkey method
    I'm using I've documented here for changing permissions when you don't have permissions: http://powertoe.wordpress.com/2010/08/28/controlling-registry-acl-permissions-with-powershell/
    function enable-privilege {
    param(
    ## The privilege to adjust. This set is taken from
    ## http://msdn.microsoft.com/en-us/library/bb530716(VS.85).aspx
    [ValidateSet(
    "SeAssignPrimaryTokenPrivilege", "SeAuditPrivilege", "SeBackupPrivilege",
    "SeChangeNotifyPrivilege", "SeCreateGlobalPrivilege", "SeCreatePagefilePrivilege",
    "SeCreatePermanentPrivilege", "SeCreateSymbolicLinkPrivilege", "SeCreateTokenPrivilege",
    "SeDebugPrivilege", "SeEnableDelegationPrivilege", "SeImpersonatePrivilege", "SeIncreaseBasePriorityPrivilege",
    "SeIncreaseQuotaPrivilege", "SeIncreaseWorkingSetPrivilege", "SeLoadDriverPrivilege",
    "SeLockMemoryPrivilege", "SeMachineAccountPrivilege", "SeManageVolumePrivilege",
    "SeProfileSingleProcessPrivilege", "SeRelabelPrivilege", "SeRemoteShutdownPrivilege",
    "SeRestorePrivilege", "SeSecurityPrivilege", "SeShutdownPrivilege", "SeSyncAgentPrivilege",
    "SeSystemEnvironmentPrivilege", "SeSystemProfilePrivilege", "SeSystemtimePrivilege",
    "SeTakeOwnershipPrivilege", "SeTcbPrivilege", "SeTimeZonePrivilege", "SeTrustedCredManAccessPrivilege",
    "SeUndockPrivilege", "SeUnsolicitedInputPrivilege")]
    $Privilege,
    ## The process on which to adjust the privilege. Defaults to the current process.
    $ProcessId = $pid,
    ## Switch to disable the privilege, rather than enable it.
    [Switch] $Disable
    ## Taken from P/Invoke.NET with minor adjustments.
    $definition = @'
    using System;
    using System.Runtime.InteropServices;
    public class AdjPriv
    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,
    ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);
    [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
    internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
    [DllImport("advapi32.dll", SetLastError = true)]
    internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    internal struct TokPriv1Luid
    public int Count;
    public long Luid;
    public int Attr;
    internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
    internal const int SE_PRIVILEGE_DISABLED = 0x00000000;
    internal const int TOKEN_QUERY = 0x00000008;
    internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
    public static bool EnablePrivilege(long processHandle, string privilege, bool disable)
    bool retVal;
    TokPriv1Luid tp;
    IntPtr hproc = new IntPtr(processHandle);
    IntPtr htok = IntPtr.Zero;
    retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);
    tp.Count = 1;
    tp.Luid = 0;
    if(disable)
    tp.Attr = SE_PRIVILEGE_DISABLED;
    else
    tp.Attr = SE_PRIVILEGE_ENABLED;
    retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);
    retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
    return retVal;
    $processHandle = (Get-Process -id $ProcessId).Handle
    $type = Add-Type $definition -PassThru
    $type[0]::EnablePrivilege($processHandle, $Privilege, $Disable)
    enable-privilege SeTakeOwnershipPrivilege
    $key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SOFTWARE\powertoe",[Microsoft.Win32.RegistryKeyPermissionCheck]::ReadWriteSubTree,[System.Security.AccessControl.RegistryRights]::takeownership)
    $acl = $key.GetAccessControl()
    $me = [System.Security.Principal.NTAccount]"t-alien\tome"
    $acl.SetOwner($me)
    $key.SetAccessControl($acl)
    http://twitter.com/toenuff
    write-host ((0..56)|%{if (($_+1)%3 -eq 0){[char][int]("116111101110117102102064103109097105108046099111109"[($_-2)..$_] -join "")}}) -separator ""

  • Change desktop icon in dist folder

    hi. i was wondering how could i change the default icon of the coffee cup in the dist folder of my application once i compile my program. thanks in advance.
    xna

    xnofate wrote:
    no. not really. once we've finished our application and compile it we get an Executable Jar File in our project's Dist folder right? and it's default icon is the Java™ Coffee Cup. i would like to change the image of that desktop icon ^^; sorry for being too vague btw.
    xnayou can change the icon to be used for all jar files - not for each single one...
    Instructions for Windows XP:
    1) Explorer > Tools > FileTypes
    2) Select JAR (Executable Jar File)
    3) Click "Advanced"
    4) Click "Change Icon"
    5) Select the icon you wish to use
    6) Click "OK"
    7) Click "Close"
    If you want to change for a single application you have create an application launcher. I use [install4j|http://www.ej-technologies.com/products/install4j/overview.html] from ej-technologies.
    ;-)

  • [xfce 4.10] How to change toolbar icon size?

    The toolbar icons in thunar and browsers (Firefox/Chromium) are too big on my small netbook screen. It seems to use 24x24 size now.
    I found the entry in ~/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
        <property name="IconSizes" type="empty"/>
        <property name="ToolbarIconSize" type="empty"/>
    What value can I put into this to change the toolbar icons smaller?

    What exactly is the toolbar? But I think you can change all the sizes in preferences.

  • Changing desktop icons

    Why cant i change certain icons like trash?

    Because Trash and Finder are special. Spend your time doing all the others!

  • Started To Change Desktop Icons, But Now Want Originals Back

    I started to change my Applications/Pictures/Library/Desktop/Ect. icons to ones that I liked a little better, but now I can't find the rest of the set, and want to revert back to the original icons. Is there a way to do this? I'd rather not have to restore everything to factory settings if that's possible.
    [My Model says MacBook but also have an iMac G5]

    Get the icon you want to change, hit get info, then hit the delete key on the keyboard, it will change back to the original icon.

  • Change Application Icon Size in iTunes.

    Can anyone tell me how to change the size of the application icons in iTunes so I wouldn't have to scroll and see them all at once?
    Thanks

    I haven't found a way. Maybe you can talk Apple into this for the next upgrade.
    Send feedback here: http://www.apple.com/feedback/itunesapp.html

  • Changing Desktop Image Size

    I used to be able to choose whether or not a desktop image would be kept the same size, stretch to fit the screen, or tile to fill the screen...but now I don't have that option.
    I'd like to use a solid background colour, but they're 1x1 images, and don't even show up.
    How do I fix this?

    By dragging the file "user/Library/Preferences/com.apple.desktop.plist" to the trash, I was able to resize my desktop images.

  • CLASSIC APPLE theme need a little help changing Desktop icons

    OK  so i am working on a older laptop 1.8 pentium m and decided to try and older basic style theme since i could not play youtube videos without disabling wbar and wallpaper so far everything is working but i would really really like to put the O.G. icons to complete the theme but cant figure out how to do it manually there are only three icons i downloaded and am going to use for home, trash , and file folders on desktop. i replaced icons with current icons in usr/share/icons/gnome file and nothing. where are the icons for the desktop located????? and will replacing them manually with the command line work?????

    To set up the new AirPort Extreme Base Station (AEBSn) as a bridge, either connect to the AEBSn's wireless network or temporarily connect your computer directly (using an Ethernet cable) to one of the LAN port of the AEBSn, and then, using the AirPort Utility, make these settings:
    Internet - Internet Connection tab
    o Connection Sharing: Off (Bridge Mode)
    o Click Update to apply the new settings.

  • Changing desktop icon placement

    I cant seem to figure out how to use the arrange icons function and not have them align on the right side of my desktop.
    I move them to the left and use this funtion, and it puts them back to the right.
    It seems counter-intuitive to have things align on the right when we read from the left.
    Any help?
    Thanks
    Nat

    Hello Nat & Welcome to Discussions.
    From your desktop choose View>Show Options or Command+J Then uncheck Snap to grid and uncheck Keep arranged by: This will allow you to put your icons wherever you want and they'll stay there.
    JerBear65

  • How do I change Icon size in Lion?

    How do I change the size of the icons on the desktop?

    Welcome to Apple Support Communities
    To change the icon size on the Desktop, make sure you are on Desktop. Then, go to View menu (on the menu bar) > Show View Options, and you can change your size icon from there.

Maybe you are looking for

  • VA Forms download/Open

    I'm trying download/Open forms on the VA's website i have already updated to the newest pdf/adobe version but still continue to get the following message To view the full contents of this document, you need a later version of the PDF viewer. You can

  • Opening Documents in Portal

    HI, I m having some attached documents in portal. when i opening attachement, its not opening. just a pop-up opening and closing immeaditrely. i could nt able to save the attached document please help me regarding this. Thanks in advance. Regards, Ve

  • HP Pavillion 15 Notebook Video green screen

    It seems that when I try to load a video on Facebook, You Tube, Yahoo, etc...  once the video starts the picture turns green.  The Audio seems to be ok, it is just the picture itself.  I am running Windows 8.  Thanks for the help!

  • How can I purge a temporary tablespace?

    How can i purge a temporary tablespace?, its size it's near to 3Gb.

  • Nano and Windows XP Pro

    Well my Nano experience hasn't been spectacular so far. On both my home PC and Work PC, both running XP Pro SP3 and iTunes 7.7 I get connection issues. These include errors when trying to update the firmware with an error message saying that the requ