搜索结果
查询Tags标签: shortcut,共有 8条记录-
powershell创建文件快捷方式
#目标文件路径,$home获取本用户路径 $ShortcutFile = "$home\Desktop\文件名称.lnk"$WScriptShell = New-Object -ComObject WScript.Shell$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile) #源文件路径带后缀$Shortcut.TargetPath = "源文件路径…
2022/7/5 5:20:39 人评论 次浏览 -
记一次失败的vbs移植lua luacom
vbs(或者powershell代码) Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") Set shortcut=objShell.CreateShortcut("test.remote.lnk") shortcut.TargetPath="C:\Users\rober\Documents\Lua\test.lua" shortcut.Save…
2022/5/22 23:05:17 人评论 次浏览 -
create shortcut and autorun program in Windows
For Current User:startup foldershell:startup Registry For Local Machine:startup foldershell:common startup RegistryCreate shortcut:cmdpowershell# 通过new-object(cmdlet)创建com对象,类是WScript.shell $com=new-object -ComObject WScript.shell # 使用.NET框…
2021/10/22 7:12:57 人评论 次浏览 -
create shortcut and autorun program in Windows
For Current User:startup foldershell:startup Registry For Local Machine:startup foldershell:common startup RegistryCreate shortcut:cmdpowershell# 通过new-object(cmdlet)创建com对象,类是WScript.shell $com=new-object -ComObject WScript.shell # 使用.NET框…
2021/10/22 7:12:57 人评论 次浏览 -
C#自动创建快捷方式
1.NET4.0之后动态类型版本 var startup = Environment.GetFolderPath(Environment.SpecialFolder.Startup); var lnkFilePath = Path.Combine(startup, "XXClient.lnk"); var shellType = Type.GetTypeFromProgID("WScript.Shell"); dynamic shell = …
2021/10/10 20:44:13 人评论 次浏览 -
C#自动创建快捷方式
1.NET4.0之后动态类型版本 var startup = Environment.GetFolderPath(Environment.SpecialFolder.Startup); var lnkFilePath = Path.Combine(startup, "XXClient.lnk"); var shellType = Type.GetTypeFromProgID("WScript.Shell"); dynamic shell = …
2021/10/10 20:44:13 人评论 次浏览 -
Ubuntu 21.04下编译Zeal并添加隐藏菜单栏快捷键
Zeal是个查API文档的利器,最近经常用到。不过我喜欢KDE下可以Ctrl+M隐藏菜单栏,于是就把Zeal的源码从github上clone了下来,路径是zealdocs/zeal. 加个快捷键的代码我发现很容易加进去,然后编译得到build/bin/zeal, 替换apt get zeal得到的/usr/bin/zeal即可。README.m…
2021/8/8 7:06:47 人评论 次浏览 -
Ubuntu 21.04下编译Zeal并添加隐藏菜单栏快捷键
Zeal是个查API文档的利器,最近经常用到。不过我喜欢KDE下可以Ctrl+M隐藏菜单栏,于是就把Zeal的源码从github上clone了下来,路径是zealdocs/zeal. 加个快捷键的代码我发现很容易加进去,然后编译得到build/bin/zeal, 替换apt get zeal得到的/usr/bin/zeal即可。README.m…
2021/8/8 7:06:47 人评论 次浏览