Windows 10: Batch file question
Discus and support Batch file question in Windows 10 Gaming to solve the problem; Sorry was not sure where to post this.I have this batch file that makes a copy a master file naming it Copy_Registration.accdb. I am wondering if there... Discussion in 'Windows 10 Gaming' started by Ordnance1, May 31, 2024.
Thema:
Batch file question
Loading...
-
Batch file question - Similar Threads - Batch file question
-
Batch file question
in Windows 10 Software and AppsBatch file question: Sorry was not sure where to post this.I have this batch file that makes a copy a master file naming it Copy_Registration.accdb. I am wondering if there is a way to delete the current version of Copy_Registration.accdb before making the copy of the master file?@echo on cd C:\... -
Batch file question
in Windows 10 GamingBatch file question: I have a MS Access database which uses SQL Server as a backend. I want multiple people to use the database so for ease of distribution I created batch files the go out to a folder and copy the file to a temp folder. That way they always have the latest version if I make... -
Batch file question
in Windows 10 Software and AppsBatch file question: I have a MS Access database which uses SQL Server as a backend. I want multiple people to use the database so for ease of distribution I created batch files the go out to a folder and copy the file to a temp folder. That way they always have the latest version if I make... -
Batch Files
in Windows 10 GamingBatch Files: How do i make it that my batch file puts itself in to startup https://answers.microsoft.com/en-us/windows/forum/all/batch-files/6156404d-20d4-4f58-bee5-14629dbf7b10 -
Batch Files
in Windows 10 Software and AppsBatch Files: How do i make it that my batch file puts itself in to startup https://answers.microsoft.com/en-us/windows/forum/all/batch-files/6156404d-20d4-4f58-bee5-14629dbf7b10 -
Create batch files with Batch?
in Windows 10 Software and AppsCreate batch files with Batch?: How to create Batch and VBS files with Batch? So I write a batch file which I then convert to exe that creates new folders in a certain directory and then creates batch and VBS files with a certain content and saves them in the created folder. So it's similar to a program... -
Batch File
in Windows 10 SupportBatch File: I need a batch file to create a folder with sub folders. The sub folders will be named the current date, they will go in a folder on c drive. For example we can call the folder test and it would be in documents on c drive. Every time we run the batch file it would create a... -
[Question] Delete files with denied access with batch scripts
in Windows 10 Support[Question] Delete files with denied access with batch scripts: Ciao, dopo anni ho iniziato a lavorare con script batch di nuovo, ma non riesco a eliminare un file nella directory principale "C", (usando W10 ultima release), questo è lo script che mi d "accesso negato". [code] @echo off cls del "C: \ SYSTAG.BIN" / A / F / Q / S... -
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...