This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pcb:s:ab1b03c9-6796-480b-9495-421bdfa43d47;EnhancedMode=1 | |
full address:s:localhost | |
server port:i:2179 | |
negotiate security layer:i:0 | |
EnableCredSspSupport:i:1 | |
allow font smoothing:i:1 | |
allow desktop composition:i:1 | |
audiocapturemode:i:1 | |
audiomode:i:0 | |
authentication level:i:2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS C:\Windows\system32> get-item "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList\Applications\Windows PowerShell\" | |
Hive: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\TSAppAllowList\Applications | |
Name Property | |
---- -------- | |
Windows PowerShell Name : Windows PowerShell | |
Path : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS C:\> get-VM | select -Property Name, State, VMID | |
Name State VMId | |
---- ----- ---- | |
2016ServerCore Off 18f3b782-189f-4be7-8d09-254dc64c484d | |
Win10 Running ab1b03c9-6796-480b-9495-421bdfa43d47 | |
Win2016 Off 469a3585-3fc0-4f72-b4d5-12cc7bbcbca9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[Parameter(Mandatory=$true)] | |
$sourceKeyVaultName, | |
[Parameter(Mandatory=$true)] | |
$destinationKeyvaultName | |
) | |
Function ExportAllKeys | |
{ | |
param ($sourceKeyVaultName, $destinationKeyVaultName) | |
Write-Output "Exporting from $sourceKeyVaultName to $destinationKeyVaultName" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.2' | |
services: | |
whoami: | |
image: artisticcheese/whoami:nanolts-2018060908 | |
ports: | |
- "8080:80" | |
volumes: | |
- whoami:c:\inetpub\logs\logfiles\host | |
deploy: | |
mode: replicated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "WindowsContainersCluster", | |
"clusterConfigurationVersion": "1.0.0", | |
"apiVersion": "10-2017", | |
"nodes": [ | |
{ | |
"nodeName": "vm0", | |
"iPAddress": "containerhost00.sf.local", | |
"nodeTypeRef": "NodeType0", | |
"faultDomain": "fd:/dc1/r0", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: artisticcheese/whoami:latest | |
manifests: | |
- | |
image: artisticcheese/whoami:unix-2018060858 | |
platform: | |
architecture: amd64 | |
os: linux | |
- | |
image: artisticcheese/whoami:nanolts-2018060858 | |
platform: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS Azure:\> New-AzureRmResourceGroup -Name CI -Location EastUS | |
ResourceGroupName : CI | |
Location : eastus | |
ProvisioningState : Succeeded | |
Tags : | |
ResourceId : /subscriptions/b55607ab-c703-4044-a526-72bd701b0d48/resourceGroups/CI | |
PS Azure:\> New-AzureRmContainerGroup -ResourceGroupName CI -Name whoamiwin -Image artisticcheese/whoami -OsType Windows -DnsNameLabel whoamiwin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG buildimagetag="2.1-sdk" | |
ARG runtimeimagetag="2.1-aspnetcore-runtime" | |
FROM microsoft/dotnet:${buildimagetag} AS build | |
COPY /code /code | |
WORKDIR /code | |
RUN dotnet build -c Release -o output | |
FROM microsoft/dotnet:${runtimeimagetag} | |
COPY --from=build /code/output . | |
EXPOSE 80 | |
ENTRYPOINT ["dotnet","code.dll"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS C:\Users\cloudadmin> docker node ls | |
ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS | |
iamctppujla19jing2j1jeyp2 swarmhost000000 Ready Active Leader | |
lhalb40ui3y8hguy41zhjwxtn swarmhost000008 Ready Active | |
tz4kj2utkhra3e9tp3ooa5ks0 swarmhost000001 Ready Active Reachable | |
vb2e2d3ax1mepjmnbdixv67m2 swarmhost000003 Ready Active | |
y1nrx7qu5mq0x9ydhdmjmpjgw * swarmmanager1 Ready Drain Reachable | |
zb0vx5hpmkni8qj98v4xspg10 swarmhost000002 Ready Active | |
PS C:\Users\cloudadmin> docker service ls |