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

[系统相关] 批处理如何将计算机名显示在桌面上?

批处理如何将计算机名显示在桌面上
达人解惑,谢谢

  1. @echo off
  2. set RegPath="HKEY_CURRENT_USER\Control Panel\Desktop"
  3. :: 获取壁纸路径
  4. for /f "tokens=2,* skip=4" %%a in ('reg query %RegPath% /v wallpaper') do set img=%%b
  5. :: 添加计算机名到壁纸上,输出为新图片
  6. nconvert -text_flag top-center -text_font system 30 -text "%ComputerName%" -out bmp -o "%temp%\wallpaper.bmp" -overwrite "%img%"
  7. :: 修改桌面背景
  8. reg add %Regpath% /v wallpaper /d "%temp%\wallpaper.bmp" /f
  9. RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
复制代码
方法是将计算机名添加到壁纸上。需下载 nconvert.exe。

添加文字的参数:
          -text string      : Add a text
          -text_font name size  : Font name and size
          -text_color r g b : Text color
          -text_back r g b  : Text background color
          -text_flag pos    : Position of text
              top-left, top-center, top-right
              center-left, center, center-right
              bottom-left, bottom-center, bottom-right
          -text_pos x y     : Position or offset
1

评分人数

TOP

返回列表