Free Web Hosting

Microsoft DOS Net command

September 22nd, 2008 Bala Krishna Posted in Dot.Net, Operating System Tutorial, Window Application, windows xp No Comments »

Command Syntax

NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP | HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION | SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]

Alter net account settings with then Net Account command.
NET ACCOUNTS [/FORCELOGOFF:{minutes | NO}] [/MINPWLEN:length]

[/MAXPWAGE:{days | UNLIMITED}] [/MINPWAGE:days]

[/UNIQUEPW:number] [/DOMAIN]

Add other networked computers with Windows Domain Controller.
NET COMPUTER \\computername {/ADD | /DEL}
Show current server or workgroup settings.
NET CONFIG [SERVER | WORKSTATION]
Continues the use of service.
NET CONTINUE [service]
Show opened shared files on the server.
NET FILE [id [/CLOSE]]
Add, delete, view, and manage network workgroups.
NET GROUP [groupname [/COMMENT:"text"]] [/DOMAIN]

groupname {/ADD [/COMMENT:"text"] | /DELETE} [/DOMAIN]

groupname username [...] {/ADD | /DELETE} [/DOMAIN]

Add, delete, view, and manage network groups.
NET LOCALGROUP [groupname [/COMMENT:"text"]] [/DOMAIN]

groupname {/ADD [/COMMENT:"text"] | /DELETE} [/DOMAIN]

groupname name [...] {/ADD | /DELETE} [/DOMAIN]

Create or delete name used for messaging.
NET NAME [name [/ADD |
/DELETE]]
Pause the specified network service.
NET PAUSE [service]
Manage network print jobs.
NET PRINT \\computername\sharename

[\\computername] job# [/HOLD | /RELEASE | /DELETE]

Sends messages to other users, computers, or messaging names on the network. The Messenger service must be running to receive messages. You can send a message only to an name that is active on the network. If the message is sent to a username, that user must be logged on and running the Messenger service to receive the message.
NET SEND {name | * | /DOMAIN[:name] | /USERS} message
Show all sessions connected to the computer and deletes them if specified.
NET SESSION [\\computername] [/DELETE]
Create and manage a local network share.
NET SHARE sharename

sharename=drive:path [/USERS:number | /UNLIMITED]

[/REMARK:"text"]

[/CACHE:Manual | Documents| Programs | None ]

sharename [/USERS:number | /UNLIMITED]

[/REMARK:"text"]

[/CACHE:Manual | Documents | Programs | None]

{sharename | devicename | drive:path} /DELETE

Start the specified network service.
NET START [service]
Show network statistics of the workstation or server.
NET STATISTICS [WORKSTATION | SERVER]
Stop the specified network service.
NET STOP service
Show the time and date of another network computer.
NET TIME [\\computername
| /DOMAIN[:domainname] | /RTSDOMAIN[:domainname]] [/SET]

[\\computername] /QUERYSNTP

[\\computername] /SETSNTP[:ntp server list]

Connects or disconnects your computer from a shared resource or displays information about your connections.
NET USE [devicename | *] [\\computername\sharename[\volume]
[password | *]]

[/USER:[domainname\]username]

[/USER:[dotted domain name\]username]

[/USER:[username@dotted domain name]

[/SMARTCARD]

[/SAVECRED]

[[/DELETE] | [/PERSISTENT:{YES | NO}]]

NET USE {devicename | *} [password | *] /HOME

NET USE [/PERSISTENT:{YES | NO}]

Show users on the computer and/or domain.
NET USER [username
[password | *] [options]] [/DOMAIN]

username {password | *} /ADD [options] [/DOMAIN]

username [/DELETE] [/DOMAIN]

Show a list of computers in a specified workgroup or the shared resources available on a specified computer.
NET VIEW [\\computername [/CACHE] | /DOMAIN[:domainname]]

NET VIEW /NETWORK:NW [\\computername]

AddThis Social Bookmark Button

Snap Shots Engage New Update

March 12th, 2008 Bala Krishna Posted in Advertising, Blogging, Browser Stuff, Crawler, Dot.Net, Internet Explorer, Internet Marketing, Online Media, Photo Sharing, Snap Shot, Web Technology No Comments »

Snap Shots now leverage with cool new technology to serve unique custom snap shot for blog post. The new technology called Snap Shots Engage. SnapShot uses Artificial Intelligence and linguistic analysis technology to drive custom snap on the basis of key phrases in blog post. By default, this same technology is enable on your site. However, you can turn it off from advance setting in snapshot My Account area.

Snap Shots Engage New Update

AddThis Social Bookmark Button

Connect to your PC over internet with SynXro

March 12th, 2008 Bala Krishna Posted in ASP.Net, Browser Stuff, Dot.Net, Error Log, Events, General, Linux Commands, Nation, Operating System Tutorial, PHP Function, PHP Programming, PHP Tutorial, Remote Access, Tips and Tricks, Web Development, Web Hosting, Web Technology, Window Application, windows xp No Comments »

SynXro is another web based product to connect, a PC to PC; or PC to LAN connection. SynXro allows you to access all the drives of your PC and all the network drives of all PCs connected to your Local Area Network from anywhere in the world. You only need to have access of internet and modern web browser to connect to your PC. No additional software or hardware is required.

Features:

  • Navigate through your Local Area Network.
  • Remote access to LAN and/or Computer.
  • Remote upload and download capabilities.
  • Remote execution of commands.
  • Accessible from any location through the internet via any browser.

Get 7 Days SynXro Trail Version

AddThis Social Bookmark Button

Visual Basic Data Types

February 5th, 2008 Bala Krishna Posted in Browser Stuff, Crawler, Dot.Net, VBScript, Visual Basic, Web Design, Web Development, Web Directory, Web Hosting, Web Technology, Window Application, windows xp No Comments »

There are 11 data types in Visual Basic 6. These are Boolean, Byte, Currency, Date, Double, Integer, Long, Object, Single, String, and Variant. Each of these data types have their own purpose. I am describing here all data type:

Boolean
The Boolean data type has only two states, True and False. These types of variables are stored as 16-bit (2 Byte) numbers, and are usually used for flags.

Byte
The Byte data type is an 8-bit variable which can store value from 0 to 255. This data type is very useful for storing binary data. It can also be very useful when sending/receiving byte values.

Double
The Double data type is a 64-bit floating point number used when high accuracy is needed. These variables can range from -1.79769313486232e308 to -4.94065645841247e-324 for negative values and from 4.94065645841247e-324 to 1.79769313486232e308 for positive values.

Integer
The Integer data type is a 16-bit number which can range from -32768 to 32767. Integers should be used when you are working with values that can not contain fractional numbers.

Long
The Long data type is a 32-bit number which can range from -2,147,483,648 to 2,147,483,647. Long variables can only contain non-fractional integer values. I myself use Long variables over Integers for increased performance. Most Win32 functions use this data type for this reason.

Single
The Single data type is a 32-bit number ranging from -3.402823e38 to -1.401298e-45 for negative values and from 1.401298e-45 to 3.402823e38 for positive values. This data type is to use when you need fractional numbers within this range.

String
The String data type is usually used as a variable-length type of variable. A variable-length string can contain up to approximately 2 billion characters. Each character has a value ranging from 0 to 255 based on the ASCII character set. Strings are used when Text is involved.

AddThis Social Bookmark Button

How to run FFMPEG command in Asp.Net

January 10th, 2008 Bala Krishna Posted in ASP.Net, Asp.Net Tips, Blogging, Browser Stuff, Bug Fix, Dot.Net, FFMPEG, FFMPEG-PHP, Linux, Linux Commands, Operating System Tutorial, Tips and Tricks, Web Design, Web Development, Web Hosting, Web Technology, Window Application, windows xp 2 Comments »

To run ffmpeg commands in asp.net you need to use Media Handler class. Here is an example how to use media handler class to run ffmpeg commands.

//Create media handler object of Media_handler class

Media_handler mymediahandler=new Media_handler();

// Get web site application path

string webapppath =Server.MapPath(Request.ApplicationPath);

//Get ffmpeg.exe full path from mapping

string ffmpeg_path=HttpContext.Current.Server.MapPath(”ffmpeg.exe”);

//Run FFMPEG command by calling Execute_FFMPEG function of Media_handler class

mymediahandler.Execute_FFMPEG(ffmpeg_path, “-i c:\\clock.avi -vcodec mp3 c:\\clock.flv”);

AddThis Social Bookmark Button