julianbury

New Member
Joined
Aug 11, 2012
Messages
4
Greetings
I am new here and new to W7.
I have recently moved from XP to W7.
The installing of W7 was impressively slick and self-sufficient.
I thought it was going to be bliss.

Then I actually started to use it.
I was shocked to find that the folders behave completely differently than in XP.

W7 folders don't have useful memories. They are dead-headed.

In XP, folders could be relied upon to pop up where you put them with contents formatted as they were when the folder was closed. If I wanted contents of all folders to be presented in list mode, I could have it.
If I wanted a particular folder to present icons, I could have it so without impacting other folders.
It was helpful and wonderful.

I did not appreciate how brilliant it was since it was all I knew.
And now it's gone :-/

My productivity requires that I optimise my folders so I am not constantly searching for the folder with the pertinent quotes or images or messages or chapters. This is why I bought a thirty-inch monitor; for the space for open folders!

What to do?

The only remedy that I can think of is to make scripts to arrange the layouts that I need. Is such a thing possible?
I am aware there is such a thing as scripting and batch files, but I have never ventured into that territory and I haven't a clue. Is there a book on scripting I should know about? I don't even know the names of any scripting languages.

Is this a futile quest? Are there scripting solutions for folder arrangements?

Thank you for your kind attention
 
Solution
Hello! Welcome to Windows 7! Transitioning from Windows XP to Windows 7 can indeed bring about some changes, especially when it comes to file and folder management. It's understandable that you miss the customization options and the familiarity of how folders behaved in XP. In Windows 7, folders do have some customization options that might help improve your productivity and organization. While the default behavior might not be exactly what you're looking for, there are ways to optimize your folder layout and view settings in Windows 7 without diving into scripting immediately. Here are some tips to enhance your folder management in Windows 7:

Folder View Customization:​

  1. Folder Options: Windows 7 allows you to...
Hello! Welcome to Windows 7! Transitioning from Windows XP to Windows 7 can indeed bring about some changes, especially when it comes to file and folder management. It's understandable that you miss the customization options and the familiarity of how folders behaved in XP. In Windows 7, folders do have some customization options that might help improve your productivity and organization. While the default behavior might not be exactly what you're looking for, there are ways to optimize your folder layout and view settings in Windows 7 without diving into scripting immediately. Here are some tips to enhance your folder management in Windows 7:

Folder View Customization:​

  1. Folder Options: Windows 7 allows you to customize how folders are displayed. You can set a default view for all folders or customize each folder individually.
  2. Folder Templates: Windows 7 has different folder templates like General Items, Documents, Pictures, etc. You can customize the view settings for each template and apply them to specific folders.

    Folder Navigation:​

  3. Favorites: You can use the Favorites section in Windows Explorer to quickly access frequently used folders.
  4. Libraries: Libraries in Windows 7 allow you to organize and view content from multiple locations in one place.

    Folder Layout Scripts:​

    If you're looking for more advanced customization beyond what Windows 7 offers, scripting can be a powerful tool. While there isn't a specific book on scripting for folder arrangements, you can start by learning basic scripting languages like batch scripting (for Windows) or PowerShell.

    Batch Script Example:​

    Here's a simple batch script that can set the view mode for a folder:
    Code:
    @echo off REM Set the view mode to Details for a specific folder echo [.ShellClassInfo] > "FolderName Desktop.ini" echo IconResource=FolderName,0 >> "FolderName Desktop.ini" echo ConfirmFileOp=0 >> "FolderName Desktop.ini" attrib +r "FolderName Desktop.ini"

    Learning Resources:​

    • Batch Scripting: "Windows Batch Scripting" by Ed Wilson is a good resource for beginners.
    • PowerShell Scripting: "Learn Windows PowerShell in a Month of Lunches" by Don Jones is a popular book for learning PowerShell.
    While scripting can be powerful, it's essential to understand the basics before diving into more complex solutions. Start by exploring the built-in customization options in Windows 7 and gradually venture into scripting if needed. Feel free to ask if you need more specific guidance or assistance with script examples!
 
Solution