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 Files

Featured Replies

Hey

I am making a batch file that helps people like me with crap pc's to get more cpu power out by stopping all processes except those that are truly vital. I have wriitne enough to stop all the servives and a "start" line to run a vbs script that frees up ram but i havent managed to stop processes running in the background like hp printer processes and that such. I need them running while i am working but games are a different story so stoppijng them starting up is out of the story.

I know that the command taskkill used to do the job but it doesnt seem to do it any more.

All the help will be appreciated. :thumbup

You could create little "database" consisting two files

Processes.bat

If "%1" EQU "" goto :EOF
If /i %1 EQU /start goto StartProcess
If /i %1 EQU /stop goto StopProcess
Goto :EOF

:StartProcess
for /f "usebackq" %%i IN (`type Processes.ini`) DO (
cmd /c start %%i
)
Goto :EOF

:StopProcess
for /f "usebackq" %%i IN (`type Processes.ini`) DO (
wmic process where name="%%i" call terminate
)
Goto :EOF

Processes.ini

name_of_process.exe

If you run processes.bat with parameter /start, it will launch all processes from processes.ini, if you start it with /stop, it will kill them all

  • Author

Soulin you are the man :w00t:

thanks that fixed my problem prefectly. I should be finished in about an hour. I just have to touch up and try it out. But thanks so much. :thumbup

once agian thanks alot.

*clap*

*clap*

First try it :) Maybe it wont work (I am using w2k right now and the script is designed for XP, so I wasnt able to try it here)

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

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.