- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- Server Management - Systems Insight Manager
- >
- Scripting removal from SIM
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2008 11:43 AM
тАО07-24-2008 11:43 AM
Scripting removal from SIM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2008 11:51 AM
тАО07-26-2008 11:51 AM
Re: Scripting removal from SIM
mxnode -r systemname|ipaddress
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-30-2012 03:16 AM
тАО11-30-2012 03:16 AM
Re: Scripting removal from SIM
Hi.
how to perform this with multiple servers from a text file?
server1
server2
...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-27-2012 06:51 AM - edited тАО12-27-2012 06:56 AM
тАО12-27-2012 06:51 AM - edited тАО12-27-2012 06:56 AM
Re: Scripting removal from SIM
USAGE:
Place the nodes.txt file containing node names in the same folder as
deletenode.bat, and just run deletenode.bat from the command prompt
Copy paste the below into a deleteNode.bat file.
@echo off & setlocal
echo =============================================
echo deleting nodenames from nodes.txt file.
echo =============================================
For /F "tokens=1*" %%i in (nodes.txt) do call :deletenodes "%%i"
echo no more node left to delete.
goto :eof
:deletenodes
echo deleting node with nodename "%~1" ...
mxnode -r -x force "%~1"
echo ---------------------------------------------------------------------
goto :eof
\T Bajpai
HP Employee