You are here:   Home Tools
Tools
Nov
14
2007
Free Deployment System E-mail
Written by Misha Hanin   

All Network Administrators at least once thought about how to install a program on remote computer without ever touching it. Hopefully, today we have a lot of ways to achieve this goal. The very interesting part of it all is, when ever I provide a consulting services to companies, I hear the same question, “Michael, do you know any FREE solutions to distribute programs, patches or run anything on remote computers?

I’d like to show you the solution, I’ve created for myself. Let’s call it “Free Deployment System :)”...

Add a comment
Read more...
 
Jun
17
2010
Introducing Remote Desktop Connection Manager (RDCMan) 2.2 E-mail
Written by Misha Hanin   

Remote Desktop Connection Manager (RDCMan) manages multiple remote desktop connections. It is useful for managing server labs where you need regular access to each machine such as automated checkin systems and data centers. It is similar to the built-in MMC Remote Desktops snap-in, but more flexible.

Remote Desktop Connection Manager is now available externally on the Microsoft Download Center - get it from http://go.microsoft.com/?LinkID=9733636.

Add a comment
 
May
14
2008
BGP E-mail
Written by Joshua Wood   

BGP is the protocol that binds the Internet together. It is what sends one packet across the globe in a few milliseconds and allows you to send email, . Typically, you will see Cisco routers that will handle this sort of heavy lifting and that is the IOS that we will review briefly.

ASNStarting point
In order to have a BGP connection you will need to have an ASN(Autonomous System Number). You can get one of these through ARIN (American Registry for Internet Numbers). BGP uses ASN's like VLAN id's or a higher level view of subnetting. There are private ASN's if you are planning on using BGP for internal purposes only. The private BPG range is AS64512 through to AS65535.

IOSConfiguration info
Here is the basic output of two connections to two different autonomous systems from one Cisco router.

Add a comment
Read more...
 
Apr
20
2008
CoreConfigurator - Graphic Management Tool for Windows Server 2008 Core E-mail
Written by Misha Hanin   

The default management for Windows Server 2008 Core is the command line. Yes, the main powerful of Windows Server Core becomes available when using such an approach, but sometimes it's not so user friendly. This is why I've been asking so many times if exist anything more graphic :). Yes, one of the first recommendations to work and manage Windows 2008 Server Core is to use MMC from a remote machine, but MMC cannot do everything. Of course to allow work with remote tools this tool should be allowed passage through the firewall packages Server Core. In addition, this is for many more difficult than editing the registry. :) Therefore, I would like to have a simple graphical tool for configuring local system. The task of developing such an interface is complicated by that the Server Core has a limited set of graphics API, this is a reason why so beautiful MMC doesn't work on it.

So, if Microsoft has not established such utilities anybody else did this. Look at the utility CoreConfigurator developed by Guy Teverovsky, MVP from Israel.

This is what it can:

  • Product Activation Product Activation
  • Configuration of display resolution Configuration of display resolution
  • Clock and time zone configuration Clock and time zone configuration
  • Remote Desktop configuration Remote Desktop configuration
  • Management of local user accounts (creation, deletion, group membership, passwords) Management of local user accounts (creation, deletion, group membership, passwords)
  • Firewall configuration Firewall configuration
  • WinRM configuration WinRM configuration
  • IP configuration IP configuration
  • Computer name and domain/workgroup membership Computer name and domain / workgroup membership
  • Installation of Server Core features/roles Installation of Server Core features / roles
Add a comment
 
Nov
16
2007
MTEE Commandline Stream Splitter - sends data to the console and (or) to log files E-mail
Written by Misha Hanin   

For me and my clients I create many scripts to simplify daily Administration tasks. Many of this script should be running from a command line ( cmd. exe). It’s very easy to run any script and to get a result of it to the log file. But, if you would like to run script and watch the result on the screen and in same time you need a hard copied log, you can use a MTEE command line utility. Mtee is a commandline utility that sends any data it receives to the console and to any number of files. Useful if you want to watch and record the output from a batch file or program.

Mtee is an 11kb standalone executable. There is no installation procedure, just run it.
Mtee is simple to use and only has several options. To list them, type mtee/?

You can download Mtee from offisial web site by following to the http://www.commandline.co.uk/mtee/index.html

 

Add a comment
 
Apr
09
2008
How to Create File for a Desired File Size E-mail
Written by Misha Hanin   

Time to time I get the need to have some temp files of varying sizes. In Linux environment it's not a problem to do. And, in Windows environment it's not a problem anymore :).
I've used a "dd for windows". "dd for windows" could be downloded from official web site. I've created a very simple script, mkef.bat. Here is a syntax for using mkef.bat:

mkef.bat <filename> <size>


And now the content of mkef.bat:

@echo off
if {%1}=={} @Echo Please use the following syntax: mkef.bat filename size &goto :EOF
if {%2}=={} @Echo Please use the following syntax: mkef.bat filename size &goto :EOF
dd if=/dev/zero of=%1 bs=1024 count=%2
Add a comment
 
Nov
23
2007
Content on log files via browser E-mail
Written by Misha Hanin   

I’ve a client that runs special program on about 100 servers. This program writes a log on central server every 3 minutes. So, when I checked main server, I found a directory Logs (C:\Logs). Log’s directory contains many log files (each log for each server).  On this server installed and runs a web server, Apache ;). So, I’d like to show a small AppsRuns.php file, which stored on web server. If we go to the http://server1/AppsRuns.php we will see a content of each log file on one web page. This web page refreshing every 10 sec. Here is a content of AppsRuns.php file:

<?php
    $refresh_time = 10; // seconds
    $path = "C:\LOGS";

    header("Content-Type: text/plain");     header("Refresh: $refresh_time");    
    if($handle = opendir($path)) {     while (false !== ($file = readdir($handle))) {         $pi = pathinfo($path . '/' . $file);         if($pi['extension'] === 'txt') {         include($path . '/' . $file);         }     }     } ?>

 

Add a comment
 


Subscribe to CuruIT
Get tips, news and tutorials via RSS, Email or Twitter

Enter your email address:


Subscribe to my news feed for free Follow me on Twitter! Become a CuruIT fan on Facebook :) Become a CuruIT fan on YouTube :)
Popular
Latest
Random
New KB: Supported command line options for the Microsoft App-V 4.5 Management Server installer 08.09.10 - Microsoft has a new Knowledge Base article that documents the supported command line options for the Microsoft App-V 4.5 ...
Solution: A virtualized application on a Microsoft App-V client fails to launch with Error Code: 2A-00002AF9 07.09.10 - Microsoft has published a new Microsoft Application Virtualization (App-V) Knowledge Base article.  If you're ha...
Update rollup package for the Hyper-V role in Windows Server 2008 R2 06.09.10 - The Hyper-V team released several Hyper-V updates as a single update package via Windows Update. These updates have been ...
Coments

Tips from ITStuff.ca

If you found any useful content in this site, mention CuruIT in your blog posts,link to CuruIT.com by copying and pasting the below html code into your own blog or web template-thanks for your support:


Review http://www.curuit.com on alexa.com
Follow Me