If you need run adobe flash player for some reason here is a fast tutorial on how to do it.
P.S: If you change your system clock to a date before 12 Jan 2021 it will still work smile!
If you need run adobe flash player for some reason here is a fast tutorial on how to do it.
P.S: If you change your system clock to a date before 12 Jan 2021 it will still work smile!
In this example, we are going to create a .txt file which every time you open it, the file adds a date into it. This types of file we call log files.
So to do this we create a simple .txt file and we add to the top of the file with large letters .LOG
We save the file and every time you open it you will see a date added. Write something, save it and the next time you open the file it will have another date under.
This is a super easy, super fast tutorial on how to reboot a computer and even a remote computer using PowerShell.
Reboot Windows from PowerShell
restart-computer
Reboot with user confirmation
restart-computer -Confirm
This post explains how to delete files and folders using PowerShell command ‘Remove-Item’. Also we are going to cover deleting of multiple files and removing files with wild characters.
For a single file:
Remove-Item test.txt
Code language: CSS (css)
For multiple files:
Remove-Item test1.txt test2.txt test3.txt
Code language: CSS (css)
For files with wild characters
Remove-Item *.txt
or
Remove-Item *.xls
and so on
Code language: CSS (css)
To delete a directory
Remove-Item foldertodelete
It will ask you if you want to delete the whole content select “Y” for yes and press enter.