[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文件操作] 批处理怎样修改桌面快捷方式属性?

如果桌面有Internet 那么修改url 为http://www.baidu.com/     并设置Internet 属性为只读。桌面没有Internet的   就不需要了

你的快捷方式是.lnk还是.url?
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 2# Batcher


    .url?

TOP

回复 2# Batcher


    .url

TOP

:):):):)  有没有人会啊

TOP

TOP

回复 5# batsicent


你是不会修改Internet.url的内容?还是不会设置属性?
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 7# Batcher


    都不会

TOP

  1. @echo off
  2. if exist "%userprofile%\桌面\Internet.url" (
  3.     >"%userprofile%\桌面\Internet.url" echo [InternetShortcut]
  4.     >>"%userprofile%\桌面\Internet.url" echo URL=http://www.baidu.com/
  5.     attrib +r "%userprofile%\桌面\Internet.url"
  6. )
复制代码

TOP

回复 9# awk
谢谢你.   
要是.lnk的  目标="C:\Program Files\Internet Explorer\IEXPLORE.EXE" http://www.baidu.com    怎么弄啊

TOP

回复 10# batsicent

用.vbs处理吧,纯批处理不能处理.lnk格式……
  1. set WshShell = WScript.CreateObject("WScript.Shell")
  2.          strDesktop = WshShell.SpecialFolders("Desktop")
  3.          set oUrlLink = WshShell.CreateShortcut(strDesktop & "\百毒一下.url")
  4.          oUrlLink.TargetPath = "http://www.baidu.com"
  5.          oUrlLink.Save
复制代码

TOP

回复 11# applba


    谢谢

TOP

返回列表