forked from TheJoeFin/Caffeinated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReflectedShell.cs
More file actions
64 lines (52 loc) · 1.86 KB
/
ReflectedShell.cs
File metadata and controls
64 lines (52 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Reflection;
namespace Caffeinated;
class ReflectedShell {
private const BindingFlags PublicInstance =
BindingFlags.Public | BindingFlags.Instance;
private readonly Type? type;
private readonly object? shell;
public ReflectedShell() {
type = Type.GetTypeFromProgID("WScript.Shell");
if (type is not null)
shell = Activator.CreateInstance(type);
}
public object? CreateShortcut(
string linkFileName,
string targetPath,
string? workingDir = null) {
object? shortcut = type?.InvokeMember(
"CreateShortcut", PublicInstance | BindingFlags.InvokeMethod,
null, shell, new object[] { linkFileName }
);
Type? shortcutType = shortcut?.GetType();
shortcutType?.InvokeMember(
"TargetPath", PublicInstance | BindingFlags.SetProperty,
null, shortcut, new object[] { targetPath }
);
if (workingDir != null) {
shortcutType?.InvokeMember(
"WorkingDirectory",
PublicInstance | BindingFlags.SetProperty,
null, shortcut, new object[] { workingDir }
);
}
shortcutType?.InvokeMember(
"Save", PublicInstance | BindingFlags.InvokeMethod,
null, shortcut, null
);
return shortcut;
}
public string? GetSpecialFolder(string item) {
object? specFolders = type?.InvokeMember(
"SpecialFolders", PublicInstance | BindingFlags.GetProperty,
null, shell, null
);
Type? specFoldersType = specFolders?.GetType();
object? path = specFoldersType?.InvokeMember(
"Item", PublicInstance | BindingFlags.InvokeMethod,
null, specFolders, new object[] { item }
);
return path as string;
}
}