Showing posts with label windows 10. Show all posts
Showing posts with label windows 10. Show all posts

Saturday, 29 April 2017

Installing GitHub for Windows failed - Resolved

Installing github for windows sometimes failed, in this post we are going to see how to resolve this issue and make a successful installation, This installation may fail after 80% or 95%, now we see what kind of error it is.

Application installation did not succeed.  Cannot locate application files on the server.  Contact the application vendor or your administrator for assistance.

Clicking on Details...

PLATFORM VERSION INFO
    Windows             : 6.1.7601.65536 (Win32NT)
    Common Language Runtime     : 4.0.30319.18034
    System.Deployment.dll       : 4.0.30319.17929 built by: FX45RTMREL
    clr.dll             : 4.0.30319.18034 built by: FX45RTMGDR
    dfdll.dll           : 4.0.30319.17929 built by: FX45RTMREL
    dfshim.dll          : 4.0.41209.0 (Main.041209-0000)

SOURCES
    Deployment url          : http://github-windows.s3.amazonaws.com/GitHub.application
    Server                         : AmazonS3
    Application url           : http://github-windows.s3.amazonaws.com/Application%20Files/GitHub_1_0_47_0/GitHub.exe.manifest
     Server                        : AmazonS3

IDENTITIES
    Deployment Identity     : GitHub.application, Version=1.0.47.0, Culture=neutral, PublicKeyToken=317444273a93ac29,
    processorArchitecture = x86
    Application Identity        : GitHub.exe, Version=1.0.47.0, Culture=neutral, PublicKeyToken=317444273a93ac29,
    processorArchitecture = x86, type=win32


Now we see how to resolve this issue,
Download the github from the following url in Internet Explorer, Internet explorer only give a success installation

https://github-windows.s3.amazonaws.com/GitHub.application


From this post you can install the github for windows

Monday, 19 September 2016

Convert multiple Video files at a same time to various formats like MPG and Mp3 using Batch and add it to sendTo options in Windows 10

Now In this post we are going to see how to convert the video file to MPG and Mp3 using batch file with simple steps like using SendTo options, for this first we need to install the VLC player, then we have to do the following steps.

Checklist : VLC player needs to be installed








Next : we are going to create a two batch scripts , one for Convert to MPG, another one for Convert to Mp3, so at the end we are going to have a screen like below , to quick access from sendTo options.


From the above screen , now we know that when we right click the file we have options like convert to in sendTo, so for achieve that we have to create two script file , 

Screenshot:









1. Copy the below code and save it as "Convert To Mp3.bat" file in desktop,  
2. Type  "shell:sendto" in run window, it will open the shell window, 
3. Copy the "convert To Mp3.bat" file to shell window like below




@ECHO OFF
rem ***********************************************************************
rem * Convert to Mp3 batch converter.                                     *
rem *                                                                     *
rem * For installation just copy batch file to SendTo directory.          *
rem * Type "SHELL:sendto" in Run     to go to Sendto folder.              *
rem *                                                                     *
rem * I got quite good compression rations with these parameters:         *
rem * vcodec=none      codec used                                         *
rem * vb=10000         video bandwidth                                    *
rem * deinterlace=1    rebuild full pictures from keyframes and diffs.    *
rem * acodec=mp3       audio codec                                        *
rem * ab=128           128kbps mp3 quality                                *
rem * channels=2       stereo                                             *
rem *                                                                     *
rem ***********************************************************************
echo **********************************************************************
echo Convert to MP3 VLC batch converter called: %0 %1 %2 %3 %4 %5 %6 %7 %8
echo **********************************************************************
echo.
echo.

SET _new_extention=mp3

:start
if "%~1"=="" (call goto :the_end)
CALL :SUB_CONVERT %1
SHIFT
goto :start


:SUB_CONVERT
SET _orig_path=%~1
rem SET _orig_extention=%_orig_filename:*.=%
echo %_orig_path%
SET _orig_extention=%_orig_path:*.=%
CALL SET _new_path=%%_orig_path%:.%_orig_extention%=.%_new_extention%%%
set _new_path="%_new_path%"
echo.
echo Converting %1 ======TO===== %_new_path% ...
echo.

if exist "%ProgramFiles%\VideoLAN\VLC\vlc.exe" (
SET _vlc_path="%ProgramFiles%\VideoLAN\VLC\vlc"
) else (
SET _vlc_path="%ProgramFiles(x86)%\VideoLAN\VLC\vlc"
)

CALL %_vlc_path% -I dummy -vvv %1 --sout=#transcode{vcodec=none,acodec=mp3,
ab=128,channels=2,samplerate=44100}:standard{access=file,mux=mp3,
dst=%_new_path%} vlc://quit
GOTO :eof

:the_end
echo **********************************************************************
echo * FINISHED                                                           *
echo **********************************************************************


pause





2.  Type  "shell:sendto" in run window





3.  copy the "convert To Mp3.bat" file to shell window 












1. Copy the below code and save it as "Convert To MPG.bat" file in desktop, 
2. Type  "shell:sendto" in run window, it will open the shell window, 
3. Copy the "convert To MPG.bat" file to shell window like below




@ECHO OFF
rem ***********************************************************************
rem * Convert to MPG batch converter. (2014-09-29 Sinx)                   *
rem *                                                                     *
rem * For installation just copy batch file to SendTo directory.          *
rem * On Win8 execute "SHELL:sendto" to go to Sendto folder.              *
rem *                                                                     *
rem * I got quite good compression rations with these parameters:         *
rem * vcodec=h264      codec used                                         *
rem * vb=10000         video bandwidth                                    *
rem * deinterlace=1    rebuild full pictures from keyframes and diffs.    *
rem * acodec=mp3       audio codec                                        *
rem * ab=128           128kbps mp3 quality                                *
rem * channels=2       stereo                                             *
rem *                                                                     *
rem ***********************************************************************
echo **********************************************************************
echo MOV to MPG VLC batch converter called: %0 %1 %2 %3 %4 %5 %6 %7 %8
echo **********************************************************************
echo.
echo For installation, just copy batch file to SendTo folder..
echo.

SET _new_extention=mpg

:start
if "%~1"=="" (call goto :the_end)
CALL :SUB_CONVERT %1
SHIFT
goto :start


:SUB_CONVERT
SET _orig_path=%~1
rem SET _orig_extention=%_orig_filename:*.=%
echo %_orig_path%
SET _orig_extention=%_orig_path:*.=%
CALL SET _new_path=%%_orig_path%:.%_orig_extention%=.%_new_extention%%%
set _new_path="%_new_path%"
echo.
echo Converting %1 ======TO===== %_new_path% ...
echo.

if exist "%ProgramFiles%\VideoLAN\VLC\vlc.exe" (
SET _vlc_path="%ProgramFiles%\VideoLAN\VLC\vlc"
) else (
SET _vlc_path="%ProgramFiles(x86)%\VideoLAN\VLC\vlc"
)

CALL %_vlc_path% -I dummy -vvv %1 --sout=#transcode{vcodec=h264,vb=10000,deinterlace=1,
acodec=mp3,ab=128,channels=2,samplerate=44100}:standard{
access=file,mux=ts,dst=%_new_path%} vlc://quit
GOTO :eof

:the_end
echo **********************************************************************
echo * FINISHED                                                           *
echo **********************************************************************

pause




2.  Type  "shell:sendto" in run window





3. copy the "convert To MPG.bat" file to shell window               









After copying the batch file in the sendto, now you can right click the video files, and go to the 
SendTo options , you can see various options Convert To Mp3, Convert To MPG 












Now you can see the converted file in the same location , where to click the sendTo options, for Convert To Mp3 or Convert To MPG

From this post you can able to learn how to create a tool to convert multiple video files at a same time to various formats like MPG and MP3 using batch file




Saturday, 17 September 2016

While running the simulator in Windows Store App, results an Error Windows simulator has detected that you have stored a windows credentials

 In this post we are going to see how to resolve a issue when trying to run a simulator for Windows Store App, Result in a Error  " windows simulator has detected that you have stored a windows credential for internet access or network address "session " that will prevent simulator from starting up.  Below is the screen shot of the error




Once this raised we have to do few steps

1. Type credential manager in cortana text window, it will launch the credential manager window





2. Select the windows credentials and select the keyword "sesssion*" today
























3. Expand the entry and click remove
4. It will ask for confirmation, give ok







5. Now you can able to run the app in simulator.





From this post you can able to resolve the issue of running simulator for Windows store app development.






Sunday, 1 November 2015

Microsoft Windows 10 Memory Leak operating system consuming lot of Ram for running the applications in Operating system

               Normally when we heard about the free update of windows 10 for existing users, looks cool for us. but after upgrading it become a night mare for many users who uses this operating systems for day to day activities.Because most of the Ram is consumed by the Operating system to run the applications.

Likewise in my system also Ram usage is consumed by the operating system by huge, When just running the Two applications it took 80% of the Total Ram, These makes to stop running the Windows Phone Emulators.

After many analysis it seems that some services is keep on running in the system which increases the Ram , it may me Drivers which leak Memory or It may be a Background WinRT apps. But it tried Two Solutions which makes my system to comes back to normal usage of Ram.

Step 1: 

  •  Go to the settings.
  • Click the System
  • Navigate to the Notifications & Actions menu
  • Disable or off the show me tips about windows
  • Restart the System  







Step 2 :

  • Install the Kingsoft PC Dcotor
  • Go to the main menu and Run optimize and click Fix all
  • Select the SysBooster and run it 
  • Now the Ram consumed is release my memory

Task Manager Before the SysBooster Run









Task Manager  After the SysBooster Run




We can see the Decrease in the Ram consumption, But none of the applications are closed.


After closing two application system reduce to 33% memory consumption, but basically while load the OS it shows me 45% of Ram consumed






     SysBooster  is the key application to reduce the memory leakage, but how a third party application can able to reduce the memory consumption, with out closing any application. Memory leak in windows 10 is resolve by this application but , again the OS raises the memory consumption after sometime. 



Why Microsoft had release this kind of Memory leak operating system ?

Memory leak issue is somewhat resolve by Third party application like Kingsoft PC Doctor ...... We can wait for Microsoft patch which will patch the memory leak issue

Even in this step also there is something we need to do is we have to run the system booster every 30 minutes or later based on memory consumtion, because again system raises its consumption after sometime.But some how we can drop the memory usage to the normal level by Third party application