Hi, the powershell has a “slimmed down intellisense” to complete commandlet names, functions, .NET types etc. The error appears as follows: In powershell only a space character is written to the console or if you press Ctrl-R a ^R is shown. If this no longer works the PSReadline module is not...
Hi, these are TCP client and server which can simply used for testing if a specific TCP port is open This is the server side. It listens at port 4444 # Server $iPort = 4444 $TCPListener = New-Object System.Net.Sockets.TcpListener($iPort) $TCPListener.Start(); [byte[]]$ReadBytesBuffer = New-Object...
Hi, .NET assemblies often have some dependencies. You can use .NET reflection tolist the dependencies: $ASM=[Reflection.Assembly]::LoadFile("C:\temp\webdriver\lib\netstandard2.0\WebDriver.dll") $ASM.GetReferencedAssemblies() Version Name ------- ---- 2.0.0.0 netstandard 8.0.0.0 System.Text.Json...
Hi, to enter a Powershell 7 shell over WinRM setup the machines as followed: On the target machine install Powershell 7 and select enable powershell remoting during the setup. On the client machine set enter session PS D:\> $PSSessionConfigurationName = 'PowerShell.7' PS D:\> enter-pssession...
Developers love GitHub, and I do to! However, migrating from one platform to another is akin to orchestrating a complex … Continue reading Migrate from Azure DevOps to GitHub – what you need to know
The post Migrate from Azure DevOps to GitHub – what you need to know appeared first on adatum.
A long-awaited feature for many is the ability to authenticate with Azure in a GitHub workflow. For a long time, … Continue reading GitHub actions federated identity with Azure AD
The post GitHub actions federated identity with Azure AD appeared first on adatum.
When a docker build is failing for me I find that a great way to understand what's causing the failure is to jump into the container in an interactive terminal and have a poke around. This used to be easy because Docker would build an image and cache it for each step in your dockerfile and output...
PrerequisitesA Windows ISOThere's plenty of other places you can find one but personally I would do one of the following.If you have a Microsoft account that's enrolled in the insiders program you can download an insider preview ISO.If you just want a stable current version of you can download the...