Forum Discussion
Surya2023
Jul 27, 2022Copper Contributor
SFC scan using Batch file or Powershell
Hi, Trying to run SFC scan every day using task scheduler ,however the result are storing in default location C:\Windows\Logs\CBS CBS text file , Written Batch file ,to run sfc scan and save the...
- Jul 28, 2022Yes, you can use the following
"$env:USERPROFILE\Desktop\$(get-date -Format "ddM-MM-yyyy--hh-mm-ss")"
-----------
If the answer help, Please click on Best Response and give a like 🙂
Surya2023
Jul 28, 2022Copper Contributor
Thank you !
now it's working fine.
One request i tried to print hours & mints also like below
$(get-date -Format "ddMMyyyy HH:mm:ss").txt"
but it is getting error , could you let me know how can i get output file with date month year hours and mints and seconds as well ,
it is possible to get the file like --> sfc_scanreport_28-07-2022-hours-mints-seconds
like that so that we can easily identify the file name .
farismalaeb
Jul 28, 2022Steel Contributor
Yes, you can use the following
"$env:USERPROFILE\Desktop\$(get-date -Format "ddM-MM-yyyy--hh-mm-ss")"
-----------
If the answer help, Please click on Best Response and give a like 🙂
"$env:USERPROFILE\Desktop\$(get-date -Format "ddM-MM-yyyy--hh-mm-ss")"
-----------
If the answer help, Please click on Best Response and give a like 🙂
- Surya2023Jul 28, 2022Copper ContributorThanks a lot its working fine now