in reply to Re^4: C:\ProgramData\Microsoft\Windows\Start Menu is not an internal or external command,operable program or batch file
in thread C:\ProgramData\Microsoft\Windows\Start Menu is not an internal or external command,operable program or batch file

Append .lnk to the filename? Try

my $winziplink = 'C:\ProgramData\Microsoft\Windows\Start Menu\WinZip.l +nk'; system $winziplink ;

See also https://en.wikipedia.org/wiki/File_shortcut#Microsoft_Windows, sh/system/exec, Win32::ShellQuote

  • Comment on Re^5: C:\ProgramData\Microsoft\Windows\Start Menu is not an internal or external command,operable program or batch file
  • Download Code

Replies are listed 'Best First'.
Re^6: C:\ProgramData\Microsoft\Windows\Start Menu is not an internal or external command,operable program or batch file
by ankit.tayal560 (Beadle) on Aug 29, 2016 at 11:08 UTC

    works (y) thanks!