Windows 10: Batch Scripts / Programs.
Discus and support Batch Scripts / Programs. in Windows 10 Performance & Maintenance to solve the problem; The members and quests who use this forum know how professional, informative and helpful it is! In order to help members solve their problems/issues... Discussion in 'Windows 10 Performance & Maintenance' started by Paul Black, Apr 30, 2020.
Thema:
Batch Scripts / Programs.
Loading...
-
Batch Scripts / Programs. - Similar Threads - Batch Scripts Programs
-
Batch scripting
in Windows 10 Software and AppsBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:Code and result:Code:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press... -
Batch scripting
in Windows 10 GamingBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:Code and result:Code:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press... -
Batch scripting
in Windows 10 Network and SharingBatch scripting: Hi, here's the code that I used for 3 DISM commands to start automatically after pressing a key:@echo off echo You are going to use DISM. echo 1. To check the image. echo 2. Scan your PC's health echo 3. Restore your PC'S health. echo To continue, press any key. echo Before... -
PageFile.sys batch script
in Windows 10 VirtualizationPageFile.sys batch script: Hello, I need help writing a batch script that would configure Windows Virtual Memory based on the amount of RAM installed If you have 4 GB of RAM, set virtual memory to 8 GB (Custom size: set both initial and maximum size to 8192) If you have 8 GB of RAM, set virtual memory... -
How to undo a batch script
in Windows 10 Network and SharingHow to undo a batch script: I decided it would be a good idea to download and run a random batch script from the internet to get the ability to move files around freely, rather than sticking to the presets. Microsoft, if you see this, please allow us to move and organize files as we wish and not have to... -
Batch Rename Script Help!
in Windows 10 SupportBatch Rename Script Help!: Hello! I am very new to this and need a little help. I am trying to create a batch file that will rename files that are called png_X.png (the X being the number page it is). The code I have is below. It works fine with out the pipe sort command but it sorts the by the ones... -
Batch scripting problems
in Windows 10 Ask InsiderBatch scripting problems: So i found a bug. In batch scripting, I can only store 3 variables. I don't know the cause for this. Here's the code, if you need it. @ echo off title Elevator OS by Lackmey on YouTube and Reddit set gdata=No data found (this one works) set 1data=No data found (this one... -
Automatically Run Batch Script
in Windows 10 Installation and UpgradeAutomatically Run Batch Script: Hi everyone When the windows installation is finished, automatically run batch script. How can I do that? Thanks *Wink 122531 -
Batch script question
in Windows 10 SupportBatch script question: Hello, I want make a batch script to delete a spefic folder on the C disk, but how can I get only that spefic folder? I got this: Code: FOR /D %%p IN ("C:\USERS\%USERNAME%\Downloads\*.*") DO rmdir "%%p" /s /q cd C:\USERS\%USERNAME%\Downloads\ del *.* /q /s timeout /t 5...