vuejs/pinia: 🍍 Intuitive, type safe, light and flexible Store for Vue using the composition api with DevTools support
🍍 Intuitive, type safe, light and flexible Store for Vue using the composition api with DevTools support - vuejs/pinia: 🍍 Intuitive, type safe, light and flexible Store for Vue using the compositio...
The Get-Date cmdlet gets a DateTime object that represents the current date or a date that you specify. Get-Date can format the date and time in several .NET and UNIX formats. You can use Get-Date to generate a date or time character string, and then send the string to other cmdlets or programs. Get-Date uses the computer's culture settings to determine how the output is formatted. To view your computer's settings, use (Get-Culture).DateTimeFormat.
How to run an EXE file in PowerShell with parameters with spaces and quotes
How do you run the following command in PowerShell?
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ID=sa...
What is the problem you are having with rclone? When there’s a mount with hundreds of thousands or millions of deeply nested files and folders, a lot of time is spent when a program needs to scan through the mount. I can increase the directory and attribute cache so that it only occurs on the first scan while subsequent scans are instant. As soon as a remote is mounted, I run a script which essentially does ‘find . ‘ and it takes about an hour to finish. If I use fast-list to list files, it ta...
Rclone Mount --vfs-cache-mode full slower than none, why?
Google Drive rclone v1.61.1 os/version: ubuntu 22.04 (64 bit) os/kernel: 5.15.0-60-generic (x86_64) os/type: linux os/arch: amd64 go/version: go1.19.4 go/linking: static go/tags: none 1Gbps Down/500Mbps Up Connection Why is it --vfs-cache-mode=full seems to be slower to start a video on Plex than --vfs-cache-mode=none? It is my experience that, at times, running a cache mode results in a 30sec start time for streaming videos. While none results in a 5sec delay. In this case, the server i...
Powershell script to check if service is started, if not then start it
I have built a small powershell script to check if a service is started. If it is not started, try to start it then wait one minute and check again. Keep repeating this process until the service ...
How to create a Windows Service in Powershell for "Network Service" account?
I want to create a Windows Service using Powershell. Creating it for a given user is piece of cake. I used this function adapted from here.
function ReinstallService1 ($serviceName, $binaryPath, $...