HyperV-Backup-Utility icon indicating copy to clipboard operation
HyperV-Backup-Utility copied to clipboard

Translation problems with -NoPerms

Open Respekt79 opened this issue 2 years ago • 1 comments

Hi,

first of all, thank you very much for the ingenious script. :-)

Here is my "problem" and the solution:

I use your script on a Windows Server - with German installation.

The script checks the status of the virtual machine at line 1226 and 1231.

$VmState.Status -ne 'Operating normally'

This state is in german: 'Normaler Betrieb'

As a result, the script does not recognize the status of the virtual machine as saved - and waits almost endlessly.

Here I had to adapt the script - as it is called in German:

$VmState.Status -ne 'Normaler Betrieb'


If ($VmState.State -ne 'Off' -OR $VmState.State -ne 'Saved' -AND $VmState.Status -ne 'Normaler Betrieb') { do { Write-Log -Type Err -Evt "(VM:$Vm) VM not in the desired state. Waiting 60 seconds..." Start-Sleep -S 60 } until ($VmState.State -eq 'Off' -OR $VmState.State -eq 'Saved' -AND $VmState.Status -eq 'Normaler Betrieb') }


Perhaps this experience can be taken into account for a future update of the script and a solution for non-English installation of the server OS can be found

Greetings Markus

Respekt79 avatar Nov 29 '23 07:11 Respekt79

Hi there Markus,

I've done some digging and currently cannot find a language agnostic way of detecting a state that a VM is in. Microsoft's own docs say to use the strings that Get-VM returns.

I'll continue to hunt for a way to get the VM state without using the language specific strings, in the mean time I have no problems if others want to fork Hyper-V Backup Utility for their own needs.

Thanks for the issue report! Mike

Digressive avatar Dec 04 '23 15:12 Digressive

Closing this issue for my sanity. As I said above, I need a way for Hyper-V to report VM states in a language agnostic way.

Digressive avatar Sep 07 '24 21:09 Digressive