We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3933f26 commit afd7a90Copy full SHA for afd7a90
1 file changed
lib/src/app_auto_launcher_impl_windows.dart
@@ -123,6 +123,7 @@ class AppAutoLauncherImplWindowsMsix extends AppAutoLauncher {
123
\$WScriptShell = New-Object -ComObject WScript.Shell
124
\$Shortcut = \$WScriptShell.CreateShortcut(\$ShortcutFile)
125
\$Shortcut.TargetPath = \$TargetPath
126
+ \$Shortcut.Arguments = "${args.join(' ')}"
127
\$Shortcut.Save()
128
''';
129
final result = Process.runSync('powershell', ['-Command', script]);
0 commit comments