#PowerShell #SystemsEngineering #IT #DataPrivacy
🔗 https://griff.systems/socials
Statements are my own.
And the PlayStation 5 runs Orbis OS, based on FreeBSD not Linux 😉 though a PlayStation running something other than Orbis OS is definitely a cool thought.
And the PlayStation 5 runs Orbis OS, based on FreeBSD not Linux 😉 though a PlayStation running something other than Orbis OS is definitely a cool thought.
```powershell
[System.IO.Compression.ZipFile]::ExtractToDirectory($path, $destPath)
```
This took 22s, which was another slight improvement.
```powershell
[System.IO.Compression.ZipFile]::ExtractToDirectory($path, $destPath)
```
This took 22s, which was another slight improvement.
```powershell
$progressPreference = 'SilentlyContinue'
Expand-Archive -Path $path -DestinationPath $destPath
$progressPreference = 'Continue'
```
This took around 25s -- much faster! This is where the bulk of time is wasted.
```powershell
$progressPreference = 'SilentlyContinue'
Expand-Archive -Path $path -DestinationPath $destPath
$progressPreference = 'Continue'
```
This took around 25s -- much faster! This is where the bulk of time is wasted.
```powershell
Expand-Archive -Path $path -DestinationPath $destPath
```
It took around 1m 8s.
```powershell
Expand-Archive -Path $path -DestinationPath $destPath
```
It took around 1m 8s.
#InternetExplorer #Windows #PowerShell
#InternetExplorer #Windows #PowerShell
learn.microsoft.com/en-us/powers...
It's worth at least trying should you feel so inclined.
learn.microsoft.com/en-us/powers...
It's worth at least trying should you feel so inclined.
🔗 Blog Post: griff.systems/posts/psprof...
🔗 PowerShell Gallery: www.powershellgallery.com/packages/PSP...
🔗 GitHub: github.com/griffeth-bar...
🔗 Blog Post: griff.systems/posts/psprof...
🔗 PowerShell Gallery: www.powershellgallery.com/packages/PSP...
🔗 GitHub: github.com/griffeth-bar...
```powershell
Whatever-YoureDoing | Out-File -Path /path/to/file -Force
```
Hopefully that is helpful!
```powershell
Whatever-YoureDoing | Out-File -Path /path/to/file -Force
```
Hopefully that is helpful!
Programmatic SQLite Queries in PowerShell
🔗 blog.griff.systems/published/20...
Programmatic SQLite Queries in PowerShell
🔗 blog.griff.systems/published/20...
gist.github.com/griffeth-bar...
gist.github.com/griffeth-bar...
But there's room for both 💙
#powershell #bash #shell
But there's room for both 💙
#powershell #bash #shell