Added VM object

This commit is contained in:
ofilter
2022-04-09 04:23:09 +02:00
parent 98025e135d
commit 799adece03
3 changed files with 109 additions and 61 deletions

View File

@@ -56,38 +56,4 @@ Get-Command -Module hyper-v | Out-GridView
##### Niputis
https://livebook.manning.com/book/windows-powershell-in-action-third-edition/chapter-2/40
# At the authentication side.
was considering something like
## Background login
for (object in auth_list){
if (can_do_backround_login){
try{
object.login_ended=False
check_login() # Emphasis on sending it to the background
}
catch $error {
finally.login_ended=True
}
}
}
## Front login
for (object in auth_list){
try{
object.login_ended=False
check_login() # Emphasis on sending it to the background
}
catch $error {
finally.login_ended=True
}
}
While (there is something that still has login_ended=False){
wait
}
https://livebook.manning.com/book/windows-powershell-in-action-third-edition/chapter-2/40