Board logo

标题: [文件操作] 批处理怎样修改桌面快捷方式属性? [打印本页]

作者: batsicent    时间: 2011-10-2 18:38     标题: 批处理怎样修改桌面快捷方式属性?

如果桌面有Internet 那么修改url 为http://www.baidu.com/     并设置Internet 属性为只读。桌面没有Internet的   就不需要了
作者: Batcher    时间: 2011-10-2 19:52

你的快捷方式是.lnk还是.url?
作者: batsicent    时间: 2011-10-2 20:11

回复 2# Batcher


    .url?
作者: batsicent    时间: 2011-10-3 22:17

回复 2# Batcher


    .url
作者: batsicent    时间: 2011-10-3 22:18

:):):):)  有没有人会啊
作者: batsicent    时间: 2011-10-4 17:50


作者: Batcher    时间: 2011-10-4 18:39

回复 5# batsicent


你是不会修改Internet.url的内容?还是不会设置属性?
作者: batsicent    时间: 2011-10-6 13:57

回复 7# Batcher


    都不会
作者: awk    时间: 2011-10-6 17:06

  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. )
复制代码

作者: batsicent    时间: 2011-10-7 15:47

回复 9# awk
谢谢你.   
要是.lnk的  目标="C:\Program Files\Internet Explorer\IEXPLORE.EXE" http://www.baidu.com    怎么弄啊
作者: applba    时间: 2011-10-10 02:12

回复 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
复制代码

作者: batsicent    时间: 2011-10-20 16:47

回复 11# applba


    谢谢




欢迎光临 批处理之家 (http://bathome.net./) Powered by Discuz! 7.2