2 Star 63 Fork 21

milaoshu1020/NScript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AddExtToEnv.vbx 472 Bytes
一键复制 编辑 原始数据 按行查看 历史
Module AddExtToEnv
Sub Main()
Dim objshell = createobject("wscript.shell")
Dim sysenv = objshell.environment("System")
addtopathext(sysenv, ";.LNK")
addtopathext(sysenv, ";.VBX")
addtopathext(sysenv, ";.CSX")
End Sub
Sub AddToPathExt(sysenv, extname)
If InStr(LCase(sysenv("PATHEXT")),LCase(extname)) = 0 Then
sysenv("PATHEXT") = sysenv("PATHEXT") & extname
End If
End Sub
End Module
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Visual Basic
1
https://gitee.com/milaoshu1020/NScript.git
git@gitee.com:milaoshu1020/NScript.git
milaoshu1020
NScript
NScript
master

搜索帮助