added Scheduled_shutdown script

This commit is contained in:
Prajwol-Shrestha 2022-10-03 20:17:05 +05:45
parent c58deeb8b7
commit 6deef5276c

View File

@ -0,0 +1,17 @@
import os
import time
def shutdown():
os.system("shutdown /s /t 1")
set_time = input("Shutdown After ----> ")
set_time = int(set_time)
sec = 60
print('Computer Will Now Shutdown in ' + str(set_time) + ' Minutes')
time.sleep(set_time*sec)
print('\n')
print('Computer Will Now Shutdown!')
time.sleep(3)
shutdown()