Fixed the issue that the RDP file was locked under the administrator user

This commit is contained in:
wk6768 2023-01-08 13:47:58 +08:00
parent b0272722b9
commit 92d558b7d6

View File

@ -36,7 +36,9 @@ Public Class RDP
If Not WixInstalled() Then Exit Sub
'Get RDP file parent folder path
Dim rdpParentFolder = My.Computer.FileSystem.GetParentPath(rdpFilePath)
'Dim rdpParentFolder = My.Computer.FileSystem.GetParentPath(rdpFilePath)
Dim lastSlashIndex = rdpFilePath.LastIndexOf("\")
Dim rdpParentFolder = Left(rdpFilePath, lastSlashIndex)
'Get the RDP filename and filename minus extension
Dim rdpFileName = My.Computer.FileSystem.GetFileInfo(rdpFilePath).Name