MSFN Forum: Auto Arrange Desktop Icons Setting? - MSFN Forum

Jump to content



  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Auto Arrange Desktop Icons Setting? Rate Topic: -----

#1 User is offline   cardguy1000 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 17-December 03

Posted 20 July 2004 - 02:43 PM

Does anyone know how the option to auto arrange desktop icons is set? I used regshot to monitor the registry and it noticed no changes. Anyone know how this can be done so that it can be added into a script? Thanks


#2 User is offline   Vann 

  • Junior
  • Pip
  • Group: Members
  • Posts: 89
  • Joined: 07-July 04

Posted 20 July 2004 - 02:56 PM

I would also like to know about this. The behavior is copied over when one copies a profile, so it has to be stored somewhere.

#3 User is offline   Nologic 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 461
  • Joined: 07-October 03

Posted 20 July 2004 - 07:24 PM

hmm if I recall its stored in the NTUSER.DAT thats located in your user folder....this also applys to Quick Launch if I recall also....but its been a while since I read the topic so I could be wrong.

#4 User is offline   Vann 

  • Junior
  • Pip
  • Group: Members
  • Posts: 89
  • Joined: 07-July 04

Posted 21 July 2004 - 08:24 AM

ntuser.dat is a registry hive that is mounted in HKEY_CURRENT_USER when the user logs on, which means it is stored somewhere in the registry. But where? I've also used regshot and it shows no changes being made to the registry.

#5 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 21 July 2004 - 01:54 PM

Auto Arrange is stored in [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]

Example:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"FFlags"=dword:00000225


I narrowed it down to the FFlags Value.

I didn't test this with an unattended install. Here's what I did as far as testing:

I checked Auto Arrange, logged off and logged back on. I exported the key. I then turned Auto Arrange back off, logged out and logged back in again. I then killed explorer from Task Manager, launched a command prompt, then imported the reg file. When I launched Explorer, my Icons were arranged and auto arrange was enabled in the context menu. I went through this process three times just to make sure.

I'd recommend postitioning your icons the way you want, log out and log back in to insure those settings are written to the registry. Then export the entire key. During the unattended installation, import it before first logon.

#6 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 21 July 2004 - 02:52 PM

After some more testing, I found out some values to use with FFlags and Sort:

Auto Arrange off, Align to Grid off:
"FFlags"=dword:00000220

Auto Arrange on:
"FFlags"=dword:00000221

Auto Arrange off - align to Grid On:
"FFlags"=dword:00000224

Auto Arange on, Align to Grid on:
"FFlags"=dword:00000225

Hide Desktop Icons:
"FFlags"=dword:00001220

Sort by name:
"Sort"=dword:00000000

Sort by size:
"Sort"=dword:00000001

Sort by type:
"Sort"=dword:00000002

Sort by Modified:
"Sort"=dword:00000003


For example, if you wanted to enable auto arrange and sort by type:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"FFlags"=dword:00000221
"Sort"=dword:00000002


#7 User is offline   Vann 

  • Junior
  • Pip
  • Group: Members
  • Posts: 89
  • Joined: 07-July 04

Posted 21 July 2004 - 02:59 PM

I LOVE YOU!

#8 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 21 July 2004 - 03:07 PM

Awww, shucks. :)

Like I said, I haven't tested these during an unattended install but I think they will work if you import these settings before the first logon.

#9 User is offline   cardguy1000 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 17-December 03

Posted 21 July 2004 - 03:18 PM

Thanks so much, will be trying on my cd soon :)

#10 User is offline   SiMoNsAyS 

  • C'mon you apes! You wanna live forever!?
  • Group: Patrons
  • Posts: 3,455
  • Joined: 17-May 04

Posted 21 July 2004 - 06:05 PM

i have posted 3 times with the same question :rolleyes: good work man thanks :)

#11 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 21 July 2004 - 06:50 PM

Thank me if it works for your Unattended CD. :)

#12 User is offline   willpantin 

  • Member
  • PipPip
  • Group: Members
  • Posts: 155
  • Joined: 20-September 03

Posted 21 July 2004 - 07:38 PM

Somewhat related question...

In my unattended setup, certain customized shortcuts get placed on my Desktop.

However, I would like to arrange some on the left side of the screen, and some on the right... For example, it could be my games on the right side. And, I am not interested in having them displayed in alphabetical order, or any other sorting routine, other than my owm customized placements.

Is there a way to automate the placement of these shortcuts? I tried the method of taking a snapshot of the registry, but it didn't work for me...

Thanks...! :)

#13 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 21 July 2004 - 08:06 PM

After arranging your icons like you want them, log off and then log back on, open Regedit and export this key:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]

You'll need to import this before the first logon.

#14 User is offline   willpantin 

  • Member
  • PipPip
  • Group: Members
  • Posts: 155
  • Joined: 20-September 03

Posted 21 July 2004 - 10:55 PM

jrzycrim,

Very Useful! Thanks for your help!

Can't wait to try it...! :)

#15 User is offline   mdes 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 343
  • Joined: 07-November 03

  Posted 21 July 2004 - 11:54 PM

I'm using Layout.zip from the MS Windows NT 4.0 Resource Kit to save the icons layout in the registry.

#16 User is offline   prathapml 

  • Follow the rules please :-)
  • Group: Patrons
  • Posts: 6,791
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 22 July 2004 - 12:10 AM

jrzycrim, on Jul 22 2004, 02:22 AM, said:

After some more testing, I found out some values to use with FFlags and Sort.......

A very good find indeed!
So, now we know where the **** thing was hiding.

#17 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 22 July 2004 - 12:51 AM

I was hoping to report back with positive results as far as icon positioning goes but alas, due to unrelated problems with my latest unattended CD, I never made it to first logon. *shrug*. Not sure where the problem lies but I suspect the ISO I was testing was corrupted in some way. Didn't get any errors, just hung during the reboot after setup. :)

I sure hope these tweaks work or there are going to be some people p***ed off at me. :rolleyes:

#18 User is offline   koden 

  • Member
  • PipPip
  • Group: Members
  • Posts: 256
  • Joined: 30-March 04

Posted 22 July 2004 - 03:03 AM

Just what I need. Thanks...
So if I put this in my regTweaks.reg file

;Auto Arrange off, Align to Grid off:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"FFlags"=dword:00000220

Then my icons will not align to grid. Am I right?

#19 User is offline   koden 

  • Member
  • PipPip
  • Group: Members
  • Posts: 256
  • Joined: 30-March 04

Posted 29 July 2004 - 06:40 AM

;Auto Arrange off, Align to Grid off:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Bags\1\Desktop]
"FFlags"=dword:00000220

it doesn't work on my pc.

The icons are still align to grid????

#20 User is offline   jrzycrim 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 769
  • Joined: 17-March 04

Posted 29 July 2004 - 07:10 AM

At the time I hadn't tested these settings. I finally got finished with my latest unattended CD but my desktop icon settings didn't work either. I imported mine from cmdlines text (t-13) but I have a sneaking suspicion that these settings are being overwritten sometime between t-9 and t-2; when Setup is 'Saving settings'.

I've been fooling around with a RunOnce entry in HKLM that imports the icon settings into the registry. A basic test from within windows worked. It seems that the HKLM RunOnce is a good time to 'sneak' these settings in before explorer fully loads. However, it didn't work during first logon of my unattended CD. I'm going to try it during the second logon and see what happens. I've got a couple of other untested approaches to try as well.

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy