Start > Run > CMD (edit)
Xem thêm
http://manhng.com/blog/msbuild/
http://manhng.com/blog/appcmd/
http://manhng.com/blog/powershell/
Tiếp tục
https://ss64.com/nt/syntax-windows.html
Microsoft OLE DB Provider for SQL: Using an UDL file
https://blogs.msdn.microsoft.com/farukcelik/2007/12/31/basics-first-udl-test/
ODBC Data Sources
https://weblogs.asp.net/dixin/easy-ways-to-test-sql-server-sql-azure-connection
https://knowhow.visual-paradigm.com/hibernate/solving-sql-server-connection-problem/
Easy way to check connectivity to SQL Server from client
+ Telnet: telnet servername 1433
+ UDL file: Create new TestConnect.udl file and click into TestConnect.udl (Data Link Properties)
Remove ASP.NET Temporary files
C:\WINDOWS\system32>del /q "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*"
C:\WINDOWS\system32>FOR /D %p IN ("C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*.*") DO rmdir "%p" /s /q
Remove all Bin, Obj folders
Bin, Obj via command prompt
for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"
Bin, Obj via .bat file
for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
Guide
I want to delete all bin and obj folders to force all projects