Using PowerShell, you can quickly create a test file on your computer. I use these for testing SharePoint attachment upload sizes. You can generate files in mb, gb, etc. easily. This example generates a 5gb test file inĀ C:\Users\MyUserName\AppData\Local\Temp called testfile.txt $path = "$env:temp\testfile.txt" $file = [io.file]::Create($path) $file.SetLength(5gb) $file.Close() Get-Item $path Example of the above … Continue reading How to generate a sample data test file using PowerShell
Month: July 2020
Purchasing a Logitech web cam in 2020- Most out there are old 2016 models
During the 2020 safer at home order, a lot of people have been purchasing web cams and recording hardware, leaving many suppliers out of stock or back ordered until July 2020. I have been tracking availability and noticed Best Buy has been getting shipments in recently, and back-ordered products ship in a week. After researching … Continue reading Purchasing a Logitech web cam in 2020- Most out there are old 2016 models