Skip to primary content
Skip to secondary content

server1.dk

Tech Tips

server1.dk

Main menu

  • Home

Monthly Archives: October 2020

WARNING: Unable to download from URI ‘https://go.microsoft.com/fwlink/?LinkID=627338&clcid=0x409’

Posted on October 27, 2020 by Henrik
Reply

Set TLS to 1.2 in Powershell and try again

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Posted in Uncategorized | Tagged nuget, powershell | Leave a reply

Get current path in Powershell

Posted on October 24, 2020 by Henrik
Reply
$PWD.Path


Posted in Uncategorized | Tagged powershell | Leave a reply

Ping from Powershell with Timestamps

Posted on October 23, 2020 by Henrik
Reply
Ping -t 8.8.8.8 | ForEach {"{0} - {1}" -f (Get-Date),$_}
Posted in Uncategorized | Tagged ping, powershell | Leave a reply

Run 64bit Powershell command from 32bit Powershell

Posted on October 14, 2020 by Henrik
Reply
$Clustername = "The_Cluster"

Set-Alias Start-PowerShell64 "$env:windir\sysnative\WindowsPowerShell\v1.0\powershell.exe"
# Create run string, to be able to parse argument
$runThis = "Start-PowerShell64 {Get-ClusterNode -Cluster " + $Clustername + "}"
$Outdata = Invoke-Expression $runThis
Posted in Uncategorized | Tagged 32bit, 64bit, powershell | Leave a reply

Recent Posts

  • Connect Powershell to Exchange Online
  • Trigger Azure Policy to evaluate compliance
  • Microsoft SQL – Get latest backup time
  • Azure Policy: Disallow dynamic Public IP
  • Azure role, start,stop and restart Virtual Machine

Recent Comments

  • Henrik on Registration of DNS records failed: Not enough storage is available to complete this operation.
  • Muruganantham on Registration of DNS records failed: Not enough storage is available to complete this operation.
  • Henrik on Registration of DNS records failed: Not enough storage is available to complete this operation.
  • beekerc on Registration of DNS records failed: Not enough storage is available to complete this operation.
  • derbinger.net on Registration of DNS records failed: Not enough storage is available to complete this operation.

Archives

  • March 2021
  • February 2021
  • January 2021
  • October 2020
  • September 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • February 2020
  • January 2020
  • November 2019
  • October 2019
  • June 2019
  • May 2019
  • April 2019
  • February 2019
  • September 2018
  • April 2018
  • October 2017
  • June 2017
  • May 2017
  • March 2017
  • February 2017
  • January 2017
  • December 2016
  • October 2016
  • September 2016
  • July 2016
  • June 2016
  • February 2016
  • December 2015
  • October 2015
  • March 2015
  • February 2015
  • January 2015
  • November 2014
  • October 2014
  • September 2014
  • July 2014
  • May 2014
  • January 2014
  • December 2013
  • November 2013
  • October 2013
  • June 2013
  • May 2013
  • April 2013
  • March 2013
  • February 2013
  • January 2013
  • December 2012
  • November 2012
  • October 2012
  • September 2012
  • August 2012
  • July 2012
  • June 2012
  • March 2012

Categories

  • Uncategorized

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
Proudly powered by WordPress