-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue: Still have the issue "Access Denied" while trying to kill a Pr…
…ocess
- Loading branch information
1 parent
4dc000b
commit b32f5fc
Showing
279 changed files
with
7,906 additions
and
85 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file removed
BIN
-14.5 KB
.vs/OfficeDRPC/FileContentIndex/55a18ef4-19c9-4500-b7cf-b4904bb362d9.vsidx
Binary file not shown.
Binary file removed
BIN
-136 KB
.vs/OfficeDRPC/FileContentIndex/6cbeb06f-4779-487a-9662-9691c36110d7.vsidx
Binary file not shown.
Binary file removed
BIN
-18.8 KB
.vs/OfficeDRPC/FileContentIndex/9c76e945-26f9-48ed-b3a8-88d286e01cef.vsidx
Binary file not shown.
Binary file removed
BIN
-18.3 KB
.vs/OfficeDRPC/FileContentIndex/a11a9494-3372-4885-b5e0-a4195ad8b22e.vsidx
Binary file not shown.
Binary file added
BIN
+107 KB
.vs/OfficeDRPC/FileContentIndex/b3e9238b-a5b6-4ccc-b959-5cbcf8aa109a.vsidx
Binary file not shown.
Binary file renamed
BIN
+14.7 KB
...ed6b111-a6a5-433a-a295-3dfe6177e9bd.vsidx → ...3da6596-4ce6-4e69-8ddb-0a71ff203193.vsidx
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
AccessDRPC/obj/Debug/AccessDRPC.csproj.AssemblyReference.cache
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Worker"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UserSecretsId>dotnet-DRPCWorker-205e0da0-89f0-4d82-a490-e0872b64c101</UserSecretsId> | ||
<OutputType>Exe</OutputType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> | ||
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AccessDRPC\AccessDRPC.csproj" /> | ||
<ProjectReference Include="..\ExcelDRPC\ExcelDRPC.csproj" /> | ||
<ProjectReference Include="..\OfficeDRPC\OfficeDRPC.csproj" /> | ||
<ProjectReference Include="..\OnedriveDRPC\OnedriveDRPC.csproj" /> | ||
<ProjectReference Include="..\OutlookDRPC\OutlookDRPC.csproj" /> | ||
<ProjectReference Include="..\PowerBiDRPC\PowerBiDRPC.csproj" /> | ||
<ProjectReference Include="..\PowerPointDRPC\PowerPointDRPC.csproj" /> | ||
<ProjectReference Include="..\PublisherDRPC\PublisherDRPC.csproj" /> | ||
<ProjectReference Include="..\WhiteboardDRPC\WhiteboardDRPC.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
using DRPCWorker; | ||
using Microsoft.Win32; | ||
|
||
var builder = Host.CreateApplicationBuilder(args); | ||
|
||
builder.Services.AddHostedService<Worker>(); | ||
|
||
|
||
var host = builder.Build(); | ||
|
||
host.Run(); | ||
|
||
// Register the app to be auto startup | ||
using (var key = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) | ||
{ | ||
key?.SetValue("MBVRK.OfficeDRPCWorker", Assembly.GetExecutingAssembly().Location); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/launchsettings.json", | ||
"profiles": { | ||
"DRPCWorker": { | ||
"commandName": "Project", | ||
//"dotnetRunMessages": true, | ||
"environmentVariables": { | ||
"DOTNET_ENVIRONMENT": "Development" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.