Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Batch file help

Featured Replies

I have several machines that have had people playing around with the ATTRIB

command. Now, I have some files that are no longer hidden like they should

be. I have a batch file that seems like it should work but in fact does not.

Any guidance would be great! Below is an example. I just want to search

recursively through the current folder and its child directories and run a

command if the file is found....

FOR /F %%I IN ("DESKTOP.INI") DO IF EXIST %%~nI ATTRIB +S +H DESKTOP.INI /S

Running that command outputs an error:

%%I was unexpected at this time.

If you want to process all DESKTOP.INI files in the current tree all you need to run is the attrib command from the desired folder.

ATTRIB +s +H DESKTOP.INI /S

The /S does the recursive searching for you. If you want to check the current folder before you run it use:

If EXIST DESKTOP.INI ATTRIB +S +H DESKTOP.INI /S

  • Author
If you want to process all DESKTOP.INI files in the current tree all you need to run is the attrib command from the desired folder.

ATTRIB +s +H DESKTOP.INI /S

The /S does the recursive searching for you. If you want to check the current folder before you run it use:

If EXIST DESKTOP.INI ATTRIB +S +H DESKTOP.INI /S

Ok, I'll try that...

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.