Category: Tech

Dell Inspiron 7348 Sm Bus Controller driver for Windows 10

It’s the synaptics touchpad driver. This one worked for me. https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=756gc … and, I have not posted to this blog in well over a year. Wow. I’ve just been chugging along doing the needful. Or, tbh, I’ve been doing a lot of compliance and security and a lot less obscure errors and break fix. But […]

Read More →

Delete all tables in Azure storage using powershell

I just copy and pasted some stuff from here and put it in a ForEach. [code language=”powershell”] $resourceGroup = ‘ResourceGroupName’ $storageAccountName = ‘StorageAccountName’ $storageAccount = Get-AzStorageAccount -ResourceGroupName $resourceGroup -Name $storageAccountName $ctx = $storageAccount.Context $tables = (Get-AzStorageTable -Context $Ctx).name ForEach ($table in $tables) { Remove-AzStorageTable –Name $table –Context $ctx -Force } [/code]

Read More →

Redis timeouts when used for session storage

Was seeing a lot of timeout errors in our apps in Azure through app insights. A lot meaning more than 50 per hour. Not to mention sporadic down time. All the timeouts were trying to talk to our redis caches that we use as simple session storage. Timeout performing EVAL, inst: 1, mgr: Inactive, err: […]

Read More →

Azure powershell – migrate web apps between resource groups

Simple script to move some web apps between resource groups. [code language=”powershell”] $apps = Get-AzureRmWebApp $appnames = ($apps).Name $oldrg = "Old resource group name" $newrg = "new resource group name" ForEach ($appname in $appnames) { $resource = Get-AzureRmResource -ResourceName $appname -ResourceGroupName $oldrg Move-AzureRmResource -DestinationResourceGroupName $newrg -ResourceId $resource.ResourceId -Force } [/code] If you want to just […]

Read More →