मैंने विंडोज को रिबूट करने के लिए एक AppleScript का उपयोग करने की कोशिश की है, हालांकि यह अच्छी तरह से नहीं चल रहा है, जब मैंने पहली बार इसे आज़माया था, तो स्टार्टअप पर एक सफेद स्क्रीन दिखाई दी और चली नहीं गई। हार्ड रीसेट ने योसेमाइट को रिबूट किया। मेरे पास इस स्क्रिप्ट को एक एप्लीकेशन के रूप में और मेरे डॉक में तत्काल पुनः आरंभ करने के लिए सहेजा गया है, लेकिन यह निराशाजनक है।
यहाँ स्क्रिप्ट है:
set adminpass to "MYPASSWORDWENTHERE"
tell application "Finder"
set iconPath to (get name of startup disk) & ":Applications:Utilities:Boot Camp Assistant.app:Contents:Resources:DA.icns" as alias
end tell
set askRestart to display dialog "Restart in Windows?" buttons {"Cancel", "Restart"} default button 1 with icon iconPath
set doRestart to button returned of askRestart
if doRestart is equal to "Cancel" then
quit
end if
if doRestart is equal to "Restart" then
do shell script "bless -mount /Volumes/BOOTCAMP/ -legacy -setBoot -nextonly; shutdown -r now" password adminpass with administrator privileges
end if
किसी ने मुझे काम करने में मदद कर सकते हैं?
sudo bless -mount /Volumes/BOOTCAMP/ -legacy -setBoot -nextonly; sudo shutdown -r now
और वापस लौटें दबाएं
bless ...
टर्मिनल में सीधे चलते हैं तो क्या विंडोज में बूटिंग काम करती है ?