-
Notifications
You must be signed in to change notification settings - Fork 36
/
ReflectedShell.cs
69 lines (57 loc) · 2.08 KB
/
ReflectedShell.cs
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
65
66
67
68
69
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.IO;
namespace Caffeinated {
class ReflectedShell {
private const BindingFlags PublicInstance =
BindingFlags.Public | BindingFlags.Instance;
private Type type;
private object shell;
public ReflectedShell() {
this.type = Type.GetTypeFromProgID("WScript.Shell");
this.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;
}
}
}