● 在控制台下
* net : 查看本机的网络配置
用命令 net start 或者net stop 可以对windows的服务进行启动和停止。
* netstat :查看本机的当前的网络状态
● 在命令模式下(使用 Win+R),的一些常用命令:
* control : 控制面板
* appwiz.cpl :添加删除程序面板
* services.msc :服务管理
* compmgmt.msc :计算机管理
* gpedit.msc :计算机管理
● 使用系统光盘去恢复系统,进入恢复控制台,使用命令可以恢复双系统启动菜单。
bootcfg /add
bootcfg /default
● 自定义Num Lock键状态
[HKEY_CURRENT_USER\Control Panel\Keyboard] 或者是 [HKEY_USERS\.DEFAULT\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2"(打开)/"0"(关闭) /"1"(关机时状态)
● 卸载、删除、启动、停止 Windows服务。
可以用命令sc用例如下:
USAGE:
sc <server> [command] [service name] <option1> <option2>...
The option <server> has the form "\\ServerName"
Further help on commands can be obtained by typing: "sc [command]"
Commands:
query-----------Queries the status for a service, or
enumerates the status for types of services.
queryex---------Queries the extended status for a service, or
enumerates the status for types of services.
start-----------Starts a service.
pause-----------Sends a PAUSE control request to a service.
interrogate-----Sends an INTERROGATE control request to a service.
continue--------Sends a CONTINUE control request to a service.
stop------------Sends a STOP request to a service.
config----------Changes the configuration of a service (persistant).
description-----Changes the description of a service.
failure---------Changes the actions taken by a service upon failure.
qc--------------Queries the configuration information for a service.
qdescription----Queries the description for a service.
qfailure--------Queries the actions taken by a service upon failure.
delete----------Deletes a service (from the registry).
create----------Creates a service. (adds it to the registry).
control---------Sends a control to a service.
sdshow----------Displays a service's security descriptor.
sdset-----------Sets a service's security descriptor.
GetDisplayName--Gets the DisplayName for a service.
GetKeyName------Gets the ServiceKeyName for a service.
EnumDepend------Enumerates Service Dependencies.
The following commands don't require a service name:
sc <server> <command> <option>
boot------------(ok | bad) Indicates whether the last boot should
be saved as the last-known-good boot configuration
Lock------------Locks the Service Database
QueryLock-------Queries the LockStatus for the SCManager Database
例如创建一个cpuz的windows服务:
sc create cpuz binPath= "D:\ProgramFiles_Mini\CPU-Z\cpuz.exe" DisplayName= "cpuz"
而删除该windows服务:
sc delete cpuz
* 在高版本系统安装低版本系统比如 在xp下装2000 在2003下装xp请先备份c盘下系统的隐藏文件
● windows的命令行也可以使用管道,例如
netstat -an | find "8080"
这个命令就类似于linux下常用的命令 ps -ef | grep java
netstat -an | more
这个命令跟linux下一致。
分享到:
相关推荐
在Windows程序设计中,了解和掌握窗口的创建、显示、销毁是基础,这涉及到Windows API的使用。首先,创建主窗口需要通过`RegisterClass`函数为窗口注册一个类,定义窗口类的属性如风格、窗口过程等。接着,用`...
枫叶云笔记_windows.exe
《Windows程序设计读书笔记》是针对那些希望通过深入学习来掌握Windows平台下程序开发技术的开发者们的一份宝贵资源。这份笔记合集很可能包含了对Charles Petzold所著的经典书籍《Programming Windows》的详细解读和...
WINDOWS2003笔记 DHCP DHCP:动态主机配置协议 1、DHCP工作流程 (1)客户机请求IP(DHCPDISCOVER) (2)服务器响应(DHCPOFFER) (3)客户机选择IP(DHCPREQUEST) (4)服务器确认IP租约(DHCPACK/DHCPPNAK) 2...
Mindbox,一款全平台可用的知识管理软件,其采用树状文件夹目录结构,在文件夹中随意地加入笔记、思维导图、链接剪藏、图片组等多样性的内容模块,搭配结构条理清晰的文件夹目录,轻松地构建自己的知识素材库。...
### Windows驱动开发笔记知识点概述 #### 一、驱动开发环境的搭建 - **关于DDK**: DDK(Driver Development Kit)是微软提供的用于编写Windows驱动程序的开发工具包。它包含了编写驱动所需的编译器、链接器、调试...
在“Windows编程笔记1”中,可能涵盖了如何创建一个基本的MFC应用程序,初始化MFC框架,以及如何使用这些类创建和管理对象。此外,笔记可能还讲解了如何处理用户输入,如按钮点击事件,以及如何利用CObArray存储和...
这份“Windows驱动学习笔记”涵盖了驱动程序的基础知识、开发环境搭建、驱动模型以及常见驱动类型的实现细节。 首先,驱动程序分为不同层次,包括用户模式驱动和内核模式驱动。用户模式驱动运行在用户权限级别,...
Windows 编程笔记 Windows 编程学习是指学习 Windows 操作系统的编程技术,包括学习 Windows API、网络编程、C++ 语言等方面的知识。 Windows 编程笔记旨在记录学习 Windows 编程的过程,总结Windows 编程的基础...
### Windows驱动程序开发学习笔记知识点解析 #### 一、Windows驱动程序开发概述 - **学习背景**: 学习者最初接触Windows驱动程序开发时遇到不少困难,经历了一段时间的摸索后逐渐入门。这一过程中,作者参考了...
### Windows SDK笔记详解 在本篇文章中,我们将深入探讨Windows SDK中的几个核心概念与实践技巧,包括窗口类的定义、窗口的创建、消息处理函数的编写以及消息循环的理解与实现。 #### 一、窗口类的定义 在Windows...
Windows API 学习笔记
以下是对标题"Windows编程学习笔记"及描述中涉及的知识点的详细阐述: 1. **Windows程序内部运行机制**: Windows程序是基于事件驱动的,这涉及到消息队列、消息循环和窗口过程等概念。程序启动后,操作系统会为每...
《Windows Server 2003 学习笔记》是一份详尽的IT资源,专为备考MCSE(Microsoft Certified Systems Engineer)的专业人士所准备。Windows Server 2003是微软发布的一款重要的服务器操作系统,它在2003年发布,直至...
标题 "notepod3替换Windows系统笔记本" 暗示了一种趋势,即用户可能正在寻找使用Notepod3作为替代传统Windows系统笔记本的方法。这可能是出于对更轻便、高效或个性化操作环境的需求。Notepod3可能是一款类似于电子...
Windows的xmind笔记
《WINDOWS核心编程》笔记合集是一份详尽深入的学习资源,涵盖了Windows操作系统内核编程的各个方面。这份资料可能包括了Windows API的底层实现、进程与线程管理、内存管理、I/O操作、设备驱动程序开发等多个关键主题...
VC++ 是一种流行的集成开发环境,用于创建 Windows 平台上的桌面应用程序,MFC(Microsoft Foundation Classes)是 VC++ 提供的一个库,它基于面向对象的编程,简化了Windows API的使用。这篇笔记主要讨论了如何在 ...