VMware VCM 5.3 - TRANSPORT LAYER SECURITY IMPLEMENTATION Betriebsanweisung Seite 101

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 272
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 100
if (([string]$cols[$j]).toupper() -eq "HOSTNAME")
{
$hostcol = $j++
}
else
{
if (([string]$cols[$j]).toupper() -eq "TASKNAME")
{
$namecol = $j++
}
else
{
$j++
}
}
}
#save first column name, to check for repeated column rows
$firstcol = $cols[0]
#encode each column name
for ($j=0;$j -lt $cols.count;$j++)
{
$cols[$j] = [string](ToCMBase64String($cols[$j]))
}
#loop through each row
#start at $k+1, because the first row may blank, and the first
populated row is column names
for ($i=$k+1;$i -lt $schtasks.count;$i++)
{
#make sure this is a data row
$row = ([string]($schtasks[$i])).trim()
if ($row.contains(""","""))
{
#split the row
$task = $schtasks[$i].substring(1,$schtasks[$i].length-
2).replace(""",""",$split).split($split)
Getting Started with VCM
VMware, Inc. 101
Seitenansicht 100
1 2 ... 96 97 98 99 100 101 102 103 104 105 106 ... 271 272

Kommentare zu diesen Handbüchern

Keine Kommentare