Thursday, 25 October 2018

RDP file copying not working..

In Server , please check the process.. <Remote Clipboard service>

  1. Load up task manager (right click taskbar and select Task Manager)
  2. Go to the Processes Tab
  3. Select rdpclip.exe
  4. Click End Process
  5. Go to the Application Tab
  6. Click New Process
  7. Type rdpclip
  8. Click Ok

Tuesday, 11 September 2018

Activities Log in Exchange Server 2010



From Exchange shell..

get-messagetrackinglog -Sender "xyz@xyzcom.in" -Start "8/6/2016 1:00:00 PM" -End "8/6/2016 11:12:00 PM" | export-csv d:\csvexport.csv


From Exchange management console,

Toolbox -- Mail Flow Tools  -- Tracking Log Explorer


Killer keyboard shortcuts to help you master Windows



eyboard shortcuts for the Windows surfer

If you hope to master Windows keyboard shortcuts, you should start with the Windows desktop. The following shortcuts let you toggle between app windows and quickly resize them without having to reach for a mouse or align your apps.
  • Windows key (a.k.a., "Winkey") + D.  Minimize all app windows and jump straight to the desktop. Hit the shortcut again to bring all apps back to the foreground.
  • Winkey + Comma. Take a quick peek at your desktop, and then release the keys to snap all apps back to the foreground.
  • Winkey + Left Arrow, or Winkey + Right Arrow. Dock your app windows to the left or right of the screen.
  • Winkey + Down Arrow, or Winkey + Up Arrow. Maximize or minimize a selected app. Or dock your app windows to the top or bottom of your display, when app windows are already docked to the left or right.
  • F11 – Toggle an active window in and out of full screen mode.
  • Ctrl + Esc – Bring up your Start menu. (This is particularly helpful if you use a keyboard that doesn't have a Winkey.)

Windows keyboard shortcuts for the Kung Fu typer

These useful shortcuts help zoom the cursor around your page much quicker than if you use a mouse or trackpad.  
  • Ctrl + Right Arrow, or Ctrl + Left Arrow. Move the cursor one word to the right or left.
  • Ctrl + Down Arrow, or Ctrl + Up Arrow. Move the cursor to the start or end of the next or previous paragraph.
  • Ctrl + Z, or Ctrl + Y. Undo or redo almost any action, as long as the app supports the feature.

Windows keyboard shortcuts for virtual desktop Jujutsu

Long a staple feature in Linux and the Mac, Microsoft finally officially incorporated virtual desktops into its Windows 10 OS. The indispensable feature lets you create additional desktops to better manage multiple app windows.
  • Winkey + Ctrl + D, or Winkey + Ctrl + F4. Create or close a virtual desktop.
  • Winkey + Ctrl + Left Arrow, or Winkey + Ctrl + Right Arrow. Toggle through your virtual desktops.
  • Winkey + Tab. Display the "Task View" interface for an overview of all virtual desktops. You can use the Arrow keys to toggle through desktops if you also hit Tab when in this mode. Hit Enter to jump to a selected desktop.

Windows keyboard shortcuts for the browser ninja

You've probably used a web browser for as long as you've had a computer, but do you take full advantage of keyboard shortcuts for browser navigation? These browser shortcuts all work the in latest versions of Internet Explorer, Microsoft Edge, Mozilla Firefox and Google Chrome.
  • Alt + D. Put the cursor into the browser's address bar.
  • Ctrl + W, or Ctrl + T. Close or open a new browser tab.
  • Ctrl + Shift + T. Reopen the last browser tab you closed. (This comes in handy when if you hit Ctrl + W too quickly.)
  • Ctrl + Plus sign, or Ctrl + Minus sign. Zoom in and out on a web page. Reset the zoom level with Ctrl + 0.
  • Ctrl + Tab, or Ctrl + Shift + Tab. Toggle to the next browser tab from left to right, or from right to left.
  • Alt + Right Arrow, or Alt + Left Arrow. Browse forward or backward through recently visited websites. These shortcuts perform the same function as a browser's Forward and Back buttons.

Windows keyboard shortcuts for locking up and shutting down

This guide wouldn't be complete without some shortcuts that help you shut down your PC and then lock things up.
  • Winkey + L. Immediately lock your PC.
  • Ctrl + Shift + Esc. Open the Task Manager to monitor app or forcibly shut down frozen programs.
  • Alt + F4. Close an active app. Using this shortcut key when your desktop is at the forefront invokes the "Shut Down Windows" prompt.


Windows + Ctrl + D – Adds a virtual desktop  
Windows + Ctrl + F4 – Close the virtual desktop you're using
Windows + comma – Gets you a peek at the desktop that goes away when you release the keys
Windows + Shift + Left or Right arrow – Moves an app from one monitor to another
Windows + Ctrl + F – Search for PCs on a network



.xlsx file cannot open in excel 2010 by double clicking



I believe this to be registry related issue.

So, it should be possible to use Registry to fix it.
You could try using regedit.

1.Click on the "Start" button, and then click on "Run." In the dialog box that appears, type "regedit" into the text box, and then click the "OK" button.
2.Navigate to 
           HKEY_CLASSES_ROOT\Applications\EXCEL.EXE\shell\open\command
3. change to Office14. 


Some times Its not solve the issue..

At that time Please try to remove the "%1" in the registry key and try..
Then change the default proramme of the .xlsx file to excel.
After that open regedit and add "%1" at the end again.

Then check and enjoy working....




Remove .lnk Virus activity


1. Login to the affected user.

2. Start - run - regedit 

3. Select the key, HKEY_CURRENT_USER\software\microsoft\windows\currentversion\explorer\fileexts\.lnk

 4. Delete the key "UserChoice"

5. Exit registry editor and restart the machine.




How to convert a numeric value into English words in Excel




How to create the sample function Called SpellNumber

  1. Start Microsoft Excel.
  2. Press ALT+F11 to start the Visual Basic Editor.
  3. On the Insert menu, click Module.
  4. Type the following code into the module sheet.
    
    Option Explicit
    'Main Function
    Function SpellNumber(ByVal MyNumber)
        Dim Dollars, Cents, Temp
        Dim DecimalPlace, Count
        ReDim Place(9) As String
        Place(2) = " Thousand "
        Place(3) = " Million "
        Place(4) = " Billion "
        Place(5) = " Trillion "
        ' String representation of amount.
        MyNumber = Trim(Str(MyNumber))
        ' Position of decimal place 0 if none.
        DecimalPlace = InStr(MyNumber, ".")
        ' Convert cents and set MyNumber to dollar amount.
        If DecimalPlace > 0 Then
            Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
                      "00", 2))
            MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
        End If
        Count = 1
        Do While MyNumber <> ""
            Temp = GetHundreds(Right(MyNumber, 3))
            If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars
            If Len(MyNumber) > 3 Then
                MyNumber = Left(MyNumber, Len(MyNumber) - 3)
            Else
                MyNumber = ""
            End If
            Count = Count + 1
        Loop
        Select Case Dollars
            Case ""
                Dollars = "No Dollars"
            Case "One"
                Dollars = "One Dollar"
             Case Else
                Dollars = Dollars & " Dollars"
        End Select
        Select Case Cents
            Case ""
                Cents = " and No Cents"
            Case "One"
                Cents = " and One Cent"
                  Case Else
                Cents = " and " & Cents & " Cents"
        End Select
        SpellNumber = Dollars & Cents
    End Function
          
    ' Converts a number from 100-999 into text 
    Function GetHundreds(ByVal MyNumber)
        Dim Result As String
        If Val(MyNumber) = 0 Then Exit Function
        MyNumber = Right("000" & MyNumber, 3)
        ' Convert the hundreds place.
        If Mid(MyNumber, 1, 1) <> "0" Then
            Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
        End If
        ' Convert the tens and ones place.
        If Mid(MyNumber, 2, 1) <> "0" Then
            Result = Result & GetTens(Mid(MyNumber, 2))
        Else
            Result = Result & GetDigit(Mid(MyNumber, 3))
        End If
        GetHundreds = Result
    End Function
          
    ' Converts a number from 10 to 99 into text. 
    Function GetTens(TensText)
        Dim Result As String
        Result = ""           ' Null out the temporary function value.
        If Val(Left(TensText, 1)) = 1 Then   ' If value between 10-19...
            Select Case Val(TensText)
                Case 10: Result = "Ten"
                Case 11: Result = "Eleven"
                Case 12: Result = "Twelve"
                Case 13: Result = "Thirteen"
                Case 14: Result = "Fourteen"
                Case 15: Result = "Fifteen"
                Case 16: Result = "Sixteen"
                Case 17: Result = "Seventeen"
                Case 18: Result = "Eighteen"
                Case 19: Result = "Nineteen"
                Case Else
            End Select
        Else                                 ' If value between 20-99...
            Select Case Val(Left(TensText, 1))
                Case 2: Result = "Twenty "
                Case 3: Result = "Thirty "
                Case 4: Result = "Forty "
                Case 5: Result = "Fifty "
                Case 6: Result = "Sixty "
                Case 7: Result = "Seventy "
                Case 8: Result = "Eighty "
                Case 9: Result = "Ninety "
                Case Else
            End Select
            Result = Result & GetDigit _
                (Right(TensText, 1))  ' Retrieve ones place.
        End If
        GetTens = Result
    End Function
         
    ' Converts a number from 1 to 9 into text. 
    Function GetDigit(Digit)
        Select Case Val(Digit)
            Case 1: GetDigit = "One"
            Case 2: GetDigit = "Two"
            Case 3: GetDigit = "Three"
            Case 4: GetDigit = "Four"
            Case 5: GetDigit = "Five"
            Case 6: GetDigit = "Six"
            Case 7: GetDigit = "Seven"
            Case 8: GetDigit = "Eight"
            Case 9: GetDigit = "Nine"
            Case Else: GetDigit = ""
        End Select
    End Function 
     
     
     
     
     

Gmail not popup the "Signout" and "Google Apps" in Firefox


about:config
 into the firefox address bar (confirm the info message in case it shows up).
Search for the preference named security.mixed_content.block_display_content. double-click it and change its value to true


Its working for me..



How to Uninstall Windows 10’s Built-in Apps (and How to Reinstall Them)




Use PowerShell to Uninstall Built-in Apps

First, open PowerShell as administrator. Open the Start menu, search for “PowerShell,” right-click the PowerShell shortcut, and select “Run as administrator.” Agree to the UAC prompt.

Copy and paste one or more of the following commands into the PowerShell prompt, pressing Enter after each one to remove the apps you don’t want on your Windows 10 system:

Uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
Uninstall Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage
Uninstall Calculator:
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Uninstall Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage
Uninstall Contact Support:
This app can’t be removed.
Uninstall Cortana:
This app can’t be removed.
Uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage
Uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage
Uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage
Uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage
Uninstall Microsoft Edge:
This app can’t be removed.
Uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage
Uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage
Uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage
Uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage
Uninstall OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage
Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage
Uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage
Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage
Uninstall Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage
Uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage
Uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage
Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage
Uninstall Windows Feedback:
This app can’t be removed.
Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage

 

 

 

 

How to fix Yes button grayed out in User Account Control



start you system in safe mode..

Press the 
Windows + R keys to open the Run dialog, type lusrmgr.msc and click/tap on OK. In the left pane, click/tap on the Users folder, then in the middle pane, Right click/tap on Administrator.
add/change password

restart in normal mode issue should be resolved.




----------------------





Fix for Yes button grayed out in User Account Control (UAC):

1.Press Windows key + Q button to open Windows charms bar.
2.Type ‘cmd’ in the search and open it.
command prompt
3.In Command Prompt type: SHUTDOWN /R /O -T 00 and press Enter.
shutdown recovery option command
4.Wait till the computer restarts and the advanced boot options are displayed.
5.Click on Troubleshoot from ‘Choose an option‘ screen.
advanced boot options
6.Next select ‘Advanced options.’
troubleshoot from choose an option
7.Now in the advanced option menu, click on ‘Command Prompt.’
Command prompt from advanced options
8.Command Prompt will open after the restart.
NOTE: You may need to enter administrator password or current user account password.
9.In cmd type NET USER ADMINISTRATOR /ACTIVE:YES and press Enter to enable the Administrator account.
active administrator account by recovery
10.Now exit the command prompt by typing exit and press enter.
11.From Choose an option window, click Troubleshoot then Advanced options and click Startup settings.
Startup setting in advanced options
12.From the Startup Settings window, click Restart.
Restart from startup setting window
13.Startup Settings window comes up again after the Windows restart, press 4 on the keyboard to start in the Safe Mode.
14.In Safe Mode click on the Administrator account to log in.
administrator account login
15.Once you are logged in Administrator account, you can remove the old account and create a new one without errors.