Quantcast
Channel: Microsoft Techies
Browsing all 430 articles
Browse latest View live

SQL Server Management Studio Local path

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft SQL Server 2008 R2\SQL Server Management Studio

View Article


How To Get Compare Plugin Back Into Notepad++

Go to notepad++ plugins from below sitehttp://sourceforge.net/project/showfiles.php?group_id=189927Download ComparePlugin from below...

View Article


Move System Databases

Open SQLSelect DB NameRight click on DBSelect propertiesClick on FilesYou will find where .mdf .ldf files are located in the server.Now you need to move this files in to another drive.Step1:Select...

View Article

event viewer custom view

 private static void WriteToEvent(string source, string message, EventLogEntryType evtType, int id)        {            //Folder Name under Applications and Services Logs...

View Article

Notepad++ How to get new line

Notepad++How to get new lineFind and replace Ex:Find | and replace with \r\nSelect ExtendedClick Replace All.

View Article


Search for a keyword in multiple files

Open command promptGo to folder path where your files are there.c:\abc>Type below command. forfiles /D -1 |findstr /I /S /P /M SearchKeyword * >c:\temp\results.txtNow you will see result file...

View Article

How to install Mozilla Firefox 31.0esr

To view all versions...https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/To install 31.0esrhttps://ftp.mozilla.org/pub/mozilla.org/firefox/releases/31.0esr/Click on...

View Article

How to protect from cross site scripting attacks?"

The easiest way to protect yourself as a user is to only follow links from the main website you wish to view. If you visit one website and it links to CNN for example, instead of clicking on it visit...

View Article


Column '' is invalid in the select list because it is not contained in either...

SELECT column_name, aggregate_function(column_name)FROM table_nameWHERE column_name operator valueGROUP BY column_nameHAVING aggregate_function(column_name) operator value;You are expecting one  column...

View Article


Aras innovator The underlying connection was closed: An unexpected error...

Error:aras innovator The underlying connection was closed: An unexpected error occurred on a send<faultcode>999</faultcode>Solution:Comment below...

View Article

How to delete Manufacturer Part

Go to SourcingManufacturer PartSearch for "Manufacturer Part"DeleteIf you are getting any error then Manufacturer Part has used in some parts.Right click on "Manufacturer Part", click "Where Used"You...

View Article

Image may be NSFW.
Clik here to view.

Aras Innovator Create a class library

Create a class library.using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MyClass{    publicclassDemoClass    {        publicstring...

View Article

Aras Innovator create item using IOM Code

Open Aras server.Get url of Aras Innovator from C:\Program Files (x86)\Aras\Innovator\VaultServerConfig.xml<AppServerURL>:Get Databased name from C:\Program Files...

View Article


Not able to connect Integration Services through SSMS

Solution:To grant access to the Integration Services serviceRun Dcomcnfg.exe. Dcomcnfg.exe provides a user interface for modifying certain settings in the registry.In the Component Services dialog,...

View Article

how to remove empty line when reading text file using C#

IEnumerable<string> lines = File.ReadLines().Where(line => line != "");orList<string> lines = File.ReadLines().Where(line => line != "").ToList();

View Article


Error : 'SOAP-ENV' is an undeclared prefix. Line 1, position 2.

Error : 'SOAP-ENV' is an undeclared prefix. Line 1, position 2.Solution:Innovator is not allowing to login, check the Innovator URL, User ID, Password.

View Article

Event Log Explorer

http://www.eventlogxp.com/order.html

View Article


File upload error for Type:Part Number:P001 Name: Rev:A-1 FileName:test.docx...

Error: File upload error for Type:Part Number:P001 Name: Rev:A-1 FileName:test.docx ActualFileName:C:\test.docx Error: Database Name Or Database Description Is Wrong.(Check your request and server...

View Article

Aras Innovator promote item

1.Part has created. (With state as Preliminary)2.Promote the item using AML.<AML>  <Item type="Part" action="promoteItem" where="[PART].item_number='test133' and [PART].is_current='1' and...

View Article

Create ListView using SharePoint PowerShell script

#Passing My Site Urlparam($serverUrl)#Begin arguments validationif($serverUrl -eq $null){$argErr = $true}if($argErr){Write-HostWrite-Host -ForegroundColor Red "One or more parameters missing or...

View Article
Browsing all 430 articles
Browse latest View live