Skip to content

Instantly share code, notes, and snippets.

View suusan2go's full-sized avatar
🏠
Working from home

Kenta Suzuki suusan2go

🏠
Working from home
View GitHub Profile
{
"name": "PageAlerts!",
"version": "0.0.1",
"manifest_version": 2,
"description": "特定のページに行くとアラートを表示する。",
"content_scripts": [
{
"matches": ["http://example.com/*"],
"js": ["script.js"],
"run_at": "document_start"
alert('注意してください!!');
$server = Connect-VIServer -Server Your_vCenter_Server -User administrator -Password your_password
#VM一覧の取得
Get-VM
#データストア一覧の取得
Get-Datastore
#スナップショット一覧の取得
Get-VM | Get-Snapshot
$Cl = Get-Cluster
$array = New-Object 'System.Collections.Generic.List[System.String]'
#fail over hostが持つIDを$arrrayに格納する。
foreach($a in $array) {
foreach($fh in $a.ExtensionData.Configuration.DasConfig.AdmissionControlPolicy.Failoverhosts){
$array.add($fh)
}
}