nikhil joshi
Small command to open windows share
Command is “net use”. This will open the shared folder
net use \\10.70.0.177\software /user:doamin\nikhil
If this command is used with * it will map drive to shared folder.
net use * \\10.70.0.177\software /user:doamin\nikhil
| Print article | This entry was posted by nikhil on June 18, 2009 at 5:47 am, and is filed under system, windows. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |
No trackbacks yet.
Modules in CLR
about 2 days ago - No comments
Basics Packaging deploying and discovering components code in CLR is different from COM, Java or Win 32. Programs written in CLR reside in module. Module is byte stream typically stored as a file in the local file system or on a web server. Format of CLR module CLR module uses an extended version of PE/COFF
WinSock2 Client Server in VC++
about 1 year ago - No comments
I was working with OpenSSL and VC++, I found that there are very few references available which tell us how to implement OpenSSL through VC++. But real thing missing is Working Client server in VC++ which will communicate through OpenSSL. So Writing one Lets start with WinSock2 client server. VC++ Code details VS2005 VC++ references
Windows 7 RC1 Review for hp nx7400 laptop
about 1 year ago - 4 comments
I just installed windows 7 RC on my laptop. This is review Device drivers status Hardware Working status Display Working (Auto detected) Dual Screens Working (Auto detected) Sound Working (Auto detected) LAN Broadcom 440x 10/100 Working (Auto detected) WLAN Broadcom 110 Working (Auto detected) Bluetooth Not Working by default. GUI experience GUI Very good Speed
Building OpenSSL on Windows using Visual C++ (6.0)
about 1 year ago - 4 comments
Hi its all about building OpenSSL on Windows using Visual C++ (6.0) Requirement, Visual c++ 6.0 VC Service pack 5 (not a 6) Visual C++ 6.0 Processor Pack Active Perl Pre build info : Package(general source) : http://www.openssl.org/source/ Unpack to: C:\build\openssl Installation folder: C:\www\openssl ( use command mkdir C:\www\openssl) openssl.cnf location : C:\www\openssl\bin Build: 1.
Get all database names form MSSQL 2005
about 1 year ago - No comments
String conxString = “Data Source=” + server + “; Integrated Security=True;”; using (System.Data.SqlClient.SqlConnection sqlConx = new System.Data.SqlClient.SqlConnection(conxString)) { sqlConx.Open(); DataTable tblDatabases = sqlConx.GetSchema(“Databases”); sqlConx.Close(); foreach (DataRow row in tblDatabases.Rows) { Console.WriteLine(“Database: ” + row["database_name"]); } }
How to mount windows shared folder in Linux.
about 1 year ago - No comments
We can use mount command for this operation. mount -t cifs “//10.70.144.2/share” /home/nikhil/mnt/devBox/ -o username=nikhil, workgroup=domain.com
Check given IP address is valid for given machine
about 1 year ago - 2 comments
Given code useDns.GetHostAddresses(). This function resolves machine host name to IP address. And if IP address is given it check for IP address and if valid returns given IP address. string machineName = "localhost"; string checkIP = "127.0.0.1"; IPAddress[] ipsMachineName = null; IPAddress[] ipsCheckIP = null; //fetch IPs for machine try { ipsMachineName =
How to start crawling of search on sharepoint site
about 1 year ago - No comments
Given command uses stsadmin tool provided by dear Microsoft. This command will start crawling of content forcefully. This is a heavy operation for SQL server. This command will be required if 1. Your default crawling time is like every 12 hrs and you want to start crawling right now. 2. Some site are not performing
Make search working for host header based sharepoint site
about 1 year ago - 9 comments
This article assumes that search service is working. If you want help in starting search service feel free to contact me. Search is very messed up problem with WSS [Windows Sharepoint Service 3.0]. Search is not working on your setup is because WSS is not able to find sharepoint site/Web applications. Let have a quick
create windows service
about 1 year ago - 2 comments
For creating windows service the easy way is use “windows service” project template, and use installutill to install the service. I am using Visual studio 2005 Professional Edition. source code of timeserver 1. Create service Create “windows service” project. Lets say ‘TimeServer’ ‘TimeServer’ contains two files ‘Service1.cs’ and Program.cs’ Change name of ‘Service1.cs’ to “TimeServer.cs” (as I don’t
about 1 year ago
Pretty cool post. I just came across your site and wanted to say
that I have really liked reading your blog posts. In any case
I’ll be subscribing to your feed and I hope you write again soon!