VMware Workstation 7 Bedienungsanleitung Seite 428

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 512
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 427
Workstation User’s Manual
428 VMware, Inc.
# This script assumes that the username is defined in the environment
# variable TEST_USERNAME (a ficticious environment variable used for this
# sample) and returns TRUE if the user is allowed to run, and FALSE
# otherwise.
# Input to script:
# None.
#
# Returns:
# TRUE if username is on white list.
# FALSE if username is not on white list or is undefined.
#
# Expected output:
# One of the strings "TRUE" or "FALSE"
#
#
my @white_list = ("alan", "bob", "mary", "sonia", "chris");
my $username = $ENV{TEST_USERNAME};
if (! defined $username) {
print "FALSE";
exit(0);
}
my @grepNames = grep(/$username/, @white_list);
if (@grepNames == 1) {
print "TRUE";
exit(0);
}
print "FALSE";
exit(0);
Customizing the VMware Player Interface on Windows
Hosts Only
YoucancustomizeseveralaspectsoftheVMwarePlayeruserinterfaceforACE
instancesthatrunonWindowshosts.Yousavethesecustomizationsinatextfileand
identifythattextfile,calledtheskinfile.
Create and Specify a Skin File
AskinfilecontainsparametersettingsforcustomizingtheVMwarePlay eruser
interface.Usethisfiletochangeapplicationicons,thetextthatappearsinthetitlebar,
andtochangethewayremovabledevicesarepresented.
ThisfeatureisavailableonlyforVMw arePlayerrunningonWindowshosts.
Seitenansicht 427
1 2 ... 423 424 425 426 427 428 429 430 431 432 433 ... 511 512

Kommentare zu diesen Handbüchern

Keine Kommentare