Jump to content

[.shellClassInfo] After Unaatended Install


Recommended Posts

After Doing an Unattended Install. I get 2 Desktop config files Opening with notepad at startup. They are easy to get rid of after install. They bother me though and I want em gone before i have to see em! i did some research but was not real lucky. microsoft says just delete them from startup folder. Any way to do this through a registry tweak before Desktop? maybe something i can add along with my other registry tweaks. Any Help i Thank you in advance! heres Microsofts Solution Notepad Starts With "[.ShellClassInfo]

desktop.ini

Link to comment
Share on other sites


HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

or

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

or

HKEY_LOCAL_MACHINE (Same subkeys)

or u can delete it from startup folder if it exists

%UserProfile%\Start Menu\Startup

%AllUsersProfile%\Start Menu\Startup

they are self explanitory

Link to comment
Share on other sites

A few ideas,

The desktop.ini is related to using Active Desktop, therefore you could either:

1. Disable Active Desktop.

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoActiveDesktop"=dword:00000001

Add this to one of your reg files.

2. Keep Active Desktop and refresh the screen, thus overwriting the desktop.ini file.

rundll32 user,repaintscreen

Add this to a batch at logon

Just change the ini file attributes:

3. The hidden /system attributes can be directly reapplied to the desktop.ini file.

@echo off
cd /D %HOMEDRIVE%\
attrib +S +H Desktop.ini /S
exit

Add this batch at logon

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...