Merging dev with master #7

Merged
ofilter merged 14 commits from dev into master 2023-05-21 22:24:36 +02:00
Showing only changes of commit f2aa5f11dd - Show all commits

View File

@ -56,4 +56,38 @@ Get-Command -Module hyper-v | Out-GridView
##### Niputis
https://livebook.manning.com/book/windows-powershell-in-action-third-edition/chapter-2/40
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
}