Automatisch ENTER oder RETURN simulieren
Hallo Community,
Ich möchte zurzeit meine VMware-player installation automatisieren,
problem ist es jetzt die "defaults" zu bestätigen mit "enter" wie man es auch während der installation machen soll.
Der Code dafür sie wie folgt aus:
$answer = check_answer_binpath($bin, 'default');
if (not ($answer eq '')) {
return $answer;
}
Die Installation sieht wie folgt aus: In which directory do you want to install the binary files?
[/usr/bin]
jetzt soll der "user" also ich in dem fall einfach nur ENTER drücken und das möchte ich jetzt einfach mit ins installations file weitergeben, dass er von selber "ENTER" drückt. Kann man das machen?
Ich kann absolut null in Perl =)
hier noch paar sachen, die zusmamenhängen könnten
$answer = check_answer_binpath($bin, 'default');
if (not ($answer eq '')) {
return $answer;
}
if (get_answer('Setup is unable to find the "' . $bin . '" program on your machine. Please make sure it is installed. Do you want to specify the location of this program by hand?', 'yesno', 'yes') eq 'no') {
return '';
}
return get_answer('What is the location of the "' . $bin . '" program on your machine?', 'binpath', '');
if ($source eq 'user') {
print wrap('The answer "' . $answer . '" is invalid. It must be the complete name of a binary file.' . "\n\n", 0);
}
return '';
}
$gAnswerSize{'binpath'} = 20;
$gCheckAnswerFct{'binpath'} = \&check_answer_binpath;
my $bin = shift;
my $answer;
Ich möchte zurzeit meine VMware-player installation automatisieren,
problem ist es jetzt die "defaults" zu bestätigen mit "enter" wie man es auch während der installation machen soll.
Der Code dafür sie wie folgt aus:
$answer = check_answer_binpath($bin, 'default');
if (not ($answer eq '')) {
return $answer;
}
Die Installation sieht wie folgt aus: In which directory do you want to install the binary files?
[/usr/bin]
jetzt soll der "user" also ich in dem fall einfach nur ENTER drücken und das möchte ich jetzt einfach mit ins installations file weitergeben, dass er von selber "ENTER" drückt. Kann man das machen?
Ich kann absolut null in Perl =)
hier noch paar sachen, die zusmamenhängen könnten
$answer = check_answer_binpath($bin, 'default');
if (not ($answer eq '')) {
return $answer;
}
if (get_answer('Setup is unable to find the "' . $bin . '" program on your machine. Please make sure it is installed. Do you want to specify the location of this program by hand?', 'yesno', 'yes') eq 'no') {
return '';
}
return get_answer('What is the location of the "' . $bin . '" program on your machine?', 'binpath', '');
if ($source eq 'user') {
print wrap('The answer "' . $answer . '" is invalid. It must be the complete name of a binary file.' . "\n\n", 0);
}
return '';
}
$gAnswerSize{'binpath'} = 20;
$gCheckAnswerFct{'binpath'} = \&check_answer_binpath;
- Prompts the user if a binary is not found
- Return value is:
- '': the binary has not been found
- the binary name if it has been found
my $bin = shift;
my $answer;
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 96425
Url: https://administrator.de/contentid/96425
Ausgedruckt am: 22.11.2024 um 21:11 Uhr
6 Kommentare
Neuester Kommentar
Hallo,
schau doch mal auf der Herstellerwebsite / Google ob es für diese Installation eine Silent-Methode gibt, der du nur die Argumente beim Aufruf mitgibst.
Gruß
Nico
schau doch mal auf der Herstellerwebsite / Google ob es für diese Installation eine Silent-Methode gibt, der du nur die Argumente beim Aufruf mitgibst.
Gruß
Nico
Hallo,
Nimm einfach AutoHotKey.
Ist sehr einfach, gute Hilfe und einfach zu schreiben.
http://de.autohotkey.com/
Grüße, robcomboy
Nimm einfach AutoHotKey.
Ist sehr einfach, gute Hilfe und einfach zu schreiben.
http://de.autohotkey.com/
Grüße, robcomboy
cooooles Teil! Danke für den Tip!
Nabend,
kleiner Tipp: Nach der installation von VMware server|workstation gibt es unter /etc/vmware ein file namens "location". Da stehen alle installierten Dateien usw drinne.
mfg
kleiner Tipp: Nach der installation von VMware server|workstation gibt es unter /etc/vmware ein file namens "location". Da stehen alle installierten Dateien usw drinne.
mfg