Skip to content

Instantly share code, notes, and snippets.

@aedancullen
Last active April 5, 2024 03:45
Show Gist options
  • Save aedancullen/cc42c1ac2ce1402943e02b0c7c4e8ad5 to your computer and use it in GitHub Desktop.
Save aedancullen/cc42c1ac2ce1402943e02b0c7c4e8ad5 to your computer and use it in GitHub Desktop.
Kill the Autodesk Fusion installer before it tries to Rebrand(TM) its "launch items" at the end, crashes, and then deletes Fusion360.exe because it's angry it crashed
WINEPREFIX=/home/stanley/Games/autodesk-fusion-360/ wine "Z:\tmp\Fusion Admin Install.exe" "-p" "deploy" "-g" "-f" "Z:\tmp\log.txt" "--quiet" &
pid=$!
while sleep 0.1
do
if grep -F "CREATE_LAUNCH_ITEMS" "/tmp/log.txt"
then
killall -9 streamer.exe
exit 0
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment