This is how I autorun a Windows 10 Pro Guest on VMWare Workstation 16 on Fedora 33 when I login to Gnome Shell
Note: gnome-session-properties
which some of my Google results would allow you to add a script to start at login no longer exists
Create a .desktop
file. I called mine start-windows-10.desktop
1 2 3 4 5 6 7 8 | [Desktop Entry] Name=Run Windows 10 Pro at Login GenericName=windows-10-start Comment=Run Windows 10 Pro at Login Exec=vmrun -T ws start /home/jm/vmware/Windows10Pro/Windows\ 10\ Pro\ Fix.vmx Terminal=false Type=Application X-GNOME-Autostart-enabled=true |
1 2 3 4 | # create the autostart folder if it doesn't exist mkdir ~/.config /autostart # copy the desktop file to the autostart cp start-windows-10.desktop ~/.config /autostart/ |
0 Comments