When Written:
I was writing a small routine that after reading some text files it would move them to a different location. using my.computer.filesystemCopyFile(file1,file2,true)
code. This code had worked on older setups but this is was running under windows11 and server 2019 and kept complaining that it needed increased permission to achieve this file moving. I didn’t want to change the permissions on the server so instead I change the permissions the app ran under. I edited the app.manifest and commented out the line.
requestedExecutionLevel level="asInvoker" uiAccess="false"
This fixed the issue. There might be a better way of doing this but it solved my issue.
Article by: Mark Newton
Published in: Mark Newton