Mark Elvers
Mark Elvers
Something like this: ` Get-HVMachineSummary -HvServer $hvs -PoolName $pool | select -ExpandProperty Base | select Name, User, BasicState | Export-Csv -Path c:\path\my.csv`
`Set-CDDrive` does not allow you to do this. I really can't see how it would work as a connection would need to be maintained between the host and the PowerCLI...
How about something like this? Firstly create, or in your case you probably have, a local folder containing your ISO files. I'm going to use C:\ISO Secondly, download `WinNFSd.exe` from...
I know it doesn't answer your question regarding do it via PowerCLI, but you can check this out by running `netstat -a` on each connection server and looking for connections...
Running on 7.6, OpenBSD's `pkg_add` offers packages `gcc` and `g++` separately. It also includes two versions of `g++` so a straight `pkg_add g++` returns ``` Ambiguous: g++ could be g++-11.2.0p15...
There are quite a few dependencies on https://github.com/ocaml/opam-repository/pull/27486
There seems to be a stack overflow in opam-repo-ci when listing https://github.com/ocaml/opam-repository/pull/27486
Increasing the stack size allows the web GUI to display the progress. There are ~200K pending jobs for this PR. Typical jobs are ~30K.
It sounds interesting. However, I'm no Nix expert. You're using `CC.get,` but your return is `Current.Unit`. Why not use `CC.set` with the flake as the value; therefore `module Value =...
I have updated the build script to include `brew install git` as part of the base image. Homebrew is first in `$PATH`; therefore, the Homebrew version of `git` will now...