Install Chrome remotely through Powershell.

Hey guys, i'm trying to install chrome remotely through Powershell but nothing shows on the end users computer. I am using "Enter-PSSession -ComputerName XXXXXXXX" to connect to the remote machine and then I tried running "PS C:\> start-process
-FilePath "msiexec.exe" -ArgumentList "/q /i .\GoogleChromeStandaloneEnterprise.msi" to execute the file silently but nothing happens.
Can someone help me with what is wrong?
My machines have got UAC turned on, but my understanding is that as long as the powershell session is run as admin on my machine it should work on the remote machines...

The file is on C drive on the remote system, shouldn't that work? Or should i have "\\XXXXXXXXX\C$\GoogleChromeStandaloneEnterprise.msi"
Oh just saw the rest of your post.. too early for me. I'll try that now.
You cannot use a UNC path it must be a FULL local path.
c:\GoogleChromeStandaloneEnterprise.msi
You cannot use a relative path as the current folder is NOT C:\
¯\_(ツ)_/¯

Similar Messages

  • Error During install Exchange 2013 through Powershell on Server 2012 "Mailbox role: Client Access service"

    Dear all
    During install Exchange 2013 through Powershell on Server 2012 I got this error in Mailbox role: Client Access service :
    The following error was generated when "$error.Clear();
    $BEVdirIdentity = $RoleNetBIOSName + "\OWA (Exchange Back End)";
    new-OwaVirtualDirectory -Role Mailbox -WebSiteName "Exchange Back End" -DomainController $RoleDomainController
    set-OwaVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
    " was run: "An error occurred while creating the IIS virtual directory 'IIS://MONAMBX2.mona.local/W3SVC/2/ROOT/o
    wa' on 'MONAMBX2'.".
    The following error was generated when "$error.Clear();
    $BEVdirIdentity = $RoleNetBIOSName + "\OWA (Exchange Back End)";
    new-OwaVirtualDirectory -Role Mailbox -WebSiteName "Exchange Back End" -DomainController $RoleDomainController
    set-OwaVirtualdirectory -Identity $BEVdirIdentity -FormsAuthentication:$false -WindowsAuthentication:$true;
    " was run: "The operation couldn't be performed because object 'MONAMBX2\OWA (Exchange Back End)' couldn't be fo
    und on 'MonaDc1.mona.local'.".
    Any advice please !!

    I can't answer your question but I had a similar issue when I was trying to move our mailbox database off the C: drive.  Our environment still has an Exchange 2007 server in it and when I was trying to move the database on the 2013 server, I would get
    error messages saying the database does not exist.  It seemed like it was trying to move the database on the 2007 server from the similar error messages that I was getting.  To get around it, I deleted the database and created a new one on the drive
    where we wanted it.
    I discovered this when I was configuring the Antispam settings.  I deleted our 2007 settings, added them to the 2013 shell, the settings appeared on our 2007 server.  The shell on 2013 was making changes to 2007.
    I'm not sure if there is a "Get|Set or New" command that I/we should be using when this happens.  Or maybe my issues will be fixed if I just remove the Exchange 2007 server?  I'm not ready to do that yet because I can't configure the spam filtering
    on 2013 yet with its shell not being able to make the changes that we need.
    I don't know if your environment is in coexistence mode like mine.
    Hopefully someone else out there has an answer or can tell us when/how the shell can make the appropriate changes to the 2013 server.  Does this happen after the 2007 server is removed?

  • Installing an application through Powershell with SCCM 2012 r2 is not working as expected

    I am trying to install a VOIP client using a powershell script. When I run the powershell script on the client in a administrative powershell prompt the script runs fine and it installs the application as expected. When I try to do the same thing through
    the SCCM client using an application it does not install.
    I am not a Powershell Guru so the script below is my simple understanding of installations through powershell as of this moment
    <#
    Installatiescript CIC Client SU6 32 bit (kantoor)
    Versie 1.3
    17 april 2015 - Uitbreiding logfile. Fix opschonen startmenu
    16 april 2015 - Aanpassing verwijderen oude client, logfile aanmaken in TEMP
    13 maart 2015 - Eerste versie
    #>
    # Bepaal installatiebron
    $SourceDir = "\\VSC0501\SetupShare\APP_IC_Client_SU6\x86"
    # Bepaal logvariabelen
    $logfile = "$env:TEMP\cic_su6-install.txt"
    $Logdate = get-date -f yyyyMMdd-HHmm
    # Controleer of oude CIC client aanwezig is (versie 4.04.316) en deinstalleer deze indien nodig
    If (Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}")
    $val = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}").DisplayVersion
    if($val -eq "4.04.316") {
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed" | out-file $logfile -Append
    exit
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed - " $process.ExitCode | out-file $logfile -Append
    exit
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru).exitcode
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru).exitcode
    Get-ChildItem "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" | Remove-Item -Recurse
    Remove-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" -Recurse -Force
    else {
    Write-Output "$logdate - Client not present" | out-file $logfile -Append
    # Installeer CIC Client SU6
    $Arguments = "/i `"$SourceDir\ICUserApps_32bit.msi`" /l*vx `"$env:TEMP\cic_su6.log`" TRANSFORMS=`"$SourceDir\Kantoor.mst`" PATCH=`"$SourceDir\ICUserApps_32bit_SU6.msp`" ICSERVERNAME=cic.abvakabofnv.local /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 (kantoor) has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 (kantoor) cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit
    # Installeer CIC Client SU6 NL Language Plugin
    $Arguments = "/i `"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl.msi`" /l*vx `"$env:TEMP\cic_su6_nl.log`" PATCH=`"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl_SU6.msp`" /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit
    # Opschonen Desktop en Start menu
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Fax.lnk"
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Voicemail Player.lnk"
    Move-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Interactive Intelligence" "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV" -force
    The uninstall part works fine, but the installation (2 parts) do not. As I mentioned before... when I run the script manually it all works fine.
    The application is installed using a script. The commandline is
    powershell.exe -excecutionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1
    The application runs hidden in the context of the system wether or not the user is logged on. The maximum allowed run time is sufficient (30 minutes).
    There is no installation log from the msiexec command so the line were the application should be installed is not executed at all. There is also no mention in my own little log ($logfile = "$env:TEMP\cic_su6-install.txt") mentioning the result
    of the installation.
    The appenforce.log says...
    +++ Starting Install enforcement for App DT "Interaction Client - Standaard SU6" ApplicationDeliveryType - ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision - 7, ContentPath - C:\WINDOWS\ccmcache\13, Execution Context - System AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    A user is logged on to the system. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    App enforcement environment:
    Context: Machine
    Command line: Powershell.exe -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1
    Allow user interaction: No
    UI mode: 0
    User token: null
    Session Id: 1
    Content path: C:\WINDOWS\ccmcache\13
    Working directory: AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Prepared working directory: C:\WINDOWS\ccmcache\13 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Found executable file Powershell.exe with complete path C:\WINDOWS\System32\WindowsPowerShell\v1.0\Powershell.exe AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Prepared command line: "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Executing Command line: "C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe" -executionpolicy bypass -file Install_UserApps_SU6_Kantoor.ps1 with user context AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Working directory C:\WINDOWS\ccmcache\13 AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Post install behavior is BasedOnExitCode AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Waiting for process 2916 to finish. Timeout = 30 minutes. AppEnforce 17-4-2015 16:31:05 640 (0x0280)
    Process 2916 terminated with exitcode: 0 AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Looking for exit code 0 in exit codes table... AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    ++++++ App enforcement completed (3 seconds) for App DT "Interaction Client - Standaard SU6" [ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4], Revision: 7, User SID: ] ++++++ AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    I'm thinking of going back to a batchfile because that seems to do the job, but Powershell is much more powerfull.
    Anybody got any answers on what is going wrong are some suggestions for a better script? 

    You have a number of problems here.
    1.  As mentioned you have UNC paths ... which means there's no reason for a package at all.  f you want SCCM to use the package it just downloaded you should use $PSScriptRoot (PS equivelant of %~0dp).  If the client is using v2 or earlier
    ... fix that quick by starting your script with:
    If (!$PSScriptRoot) {
    $PSSCriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
    Now you can call your install easy enough with a $PSScriptRoot+"\app.exe"
    2.  your discovery is failing after install.  This will always make SCCM report an installation failed even when the exit code is 0.  You can see it at the end of your log:
    Matched exit code 0 to a Success entry in exit codes table. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    Performing detection of app deployment type Interaction Client - Standaard SU6(ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, revision 7) for system. AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    +++ Application not discovered. [AppDT Id: ScopeId_2EC1E80A-D73E-4152-A94F-546E7827CCB6/DeploymentType_720b132a-5626-4055-9555-18b4775724c4, Revision: 7] AppEnforce 17-4-2015 16:31:08 640 (0x0280)
    So either your installation script is spitting out a exit code 0 regardless of the event OR your detection is wrong.
    EDIT:  you have exit statemetns after failed installs ... but no exit code (simply exit).  Change those to exit 1 so sccm knows it's a failed exit and not just a generic exit.  That's probably your problem (unc can't be reached as system, you're
    getting an exit  .... not defining exit 1).
    Something like this (warning this is a fast change so review it):
    <#
    Installatiescript CIC Client SU6 32 bit (kantoor)
    Versie 1.3
    17 april 2015 - Uitbreiding logfile. Fix opschonen startmenu
    16 april 2015 - Aanpassing verwijderen oude client, logfile aanmaken in TEMP
    13 maart 2015 - Eerste versie
    #>
    If (!$PSScriptRoot) {
    $PSSCriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
    # Bepaal installatiebron
    #$SourceDir = "\\VSC0501\SetupShare\APP_IC_Client_SU6\x86"
    $SourceDir = $PSScriptRoot
    # Bepaal logvariabelen
    $logfile = "$env:TEMP\cic_su6-install.txt"
    $Logdate = get-date -f yyyyMMdd-HHmm
    # Controleer of oude CIC client aanwezig is (versie 4.04.316) en deinstalleer deze indien nodig
    If (Test-Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}")
    $val = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{543BE3AC-426D-4FDD-8160-ECEEC2E211B6}").DisplayVersion
    if($val -eq "4.04.316") {
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed" | out-file $logfile -Append
    exit 1
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - Client has been succesfully removed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - Client cannot be succesfully removed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {3F20671C-9CA2-41FA-B94A-C7C7FD95C7B4} /QN" -Wait -Passthru).exitcode
    #(Start-Process -Filepath "msiexec.exe" -Argumentlist "/x {543BE3AC-426D-4FDD-8160-ECEEC2E211B6} /QN" -Wait -Passthru).exitcode
    Get-ChildItem "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" | Remove-Item -Recurse
    Remove-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV\Interactive Intelligence" -Recurse -Force
    else {
    Write-Output "$logdate - Client not present" | out-file $logfile -Append
    # Installeer CIC Client SU6
    $Arguments = "/i `"$SourceDir\ICUserApps_32bit.msi`" /l*vx `"$env:TEMP\cic_su6.log`" TRANSFORMS=`"$SourceDir\Kantoor.mst`" PATCH=`"$SourceDir\ICUserApps_32bit_SU6.msp`" ICSERVERNAME=cic.abvakabofnv.local /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 (kantoor) has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 (kantoor) cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    # Installeer CIC Client SU6 NL Language Plugin
    $Arguments = "/i `"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl.msi`" /l*vx `"$env:TEMP\cic_su6_nl.log`" PATCH=`"$SourceDir\LanguagePlugins\ICUserApps_LanguagePlugin_nl_SU6.msp`" /QN /norestart"
    $process = Start-Process -Filepath "msiexec.exe" -Argumentlist "$Arguments" -Wait -Passthru
    if ($process.ExitCode -eq 0) {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL has been succesfully installed" | out-file $logfile -Append
    else {
    Write-Output "$logdate - CIC Client SU6 Languagepack NL cannot be succesfully installed - " $process.ExitCode | out-file $logfile -Append
    exit 1
    # Opschonen Desktop en Start menu
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Fax.lnk"
    Remove-Item -Path "$env:PUBLIC\Desktop\Interaction Voicemail Player.lnk"
    Move-Item -Path "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Interactive Intelligence" "$env:SYSTEMDRIVE\ProgramData\Microsoft\Windows\Start Menu\Programs\Abvakabo FNV" -force
    Exit 0

  • Chromium for osx Marveicks  and chrome remote desktop cloud computing App!

    Hello!!!
    Good Day to Everyone.
    I'm clkwong@ and cho leung Kwong@ in Hong Kong.
    I have an imac and a macbook air , both of them is installed mac osx Marveicks.
    I download chroimium for mac Marveicks on both machines and install chrome remote desktop on both machines.
    When I have openned the chrome remote desktop and it was been logged in gmail account,  after accept the authority , then I choosed  the option in chrome remote desktop --> my computer.
    It needs to input pin (any 6 numbers) and input again , then ok.
    After that the cloud needed  to confirm the pin!
    And then I  used the macbook air and opened chrome remote desktop and choose the logged in gmail account computer and
    comfirmed the pin.
    Amazing, something happened, I could use the macbook air to operate the imac.
    For the above my experience of chrome remote desktop of chromium for mac osx Marveicksv use, I have an idea for remote access as follows :-
    1. I can use iphone 5 series with 4G lte/advanced and apple remote desktop App for ios 7 to connect to home's apple computer through icloud.
    2 . I can use iphone 5 series 4G lte and icolud with home's apple computer Internet share as wifi router to operate home's appliances which have wifi devices with App.
    3. I can use iphone 5 series 4G lte and icloud  to operate with home's apple computer for 4K video downloaded from website and stored in home's apple computer with usb 3.0 external Hard Disk.
    Thanks, Jesus loves.
    reported by clkwong@ in cloud!!!

    Hi Shay,
    Thank you for posting in Windows Server Forum.
    Please check that required ports is opened for remote desktop (port 3389)?
    Are you performing remote desktop with IP address or Hostname?
    Did you find any specific error for your case?
    Also there is required network connection available. If you can successfully connect with IP address then there might be issue with Hostname resolution for your server. From your description it also seems that there are some credential issue occurs for you.
    Please try with domain\username and verify. 
    You can also try URI scheme for connecting, for more detail refer this article.
    Remote Desktop Client URI Scheme Support
    http://technet.microsoft.com/en-us/library/dn690096.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • C# Run VB Script file remotely thriugh PowerShell Invoke Command

    I have a requirement where need to run vbscript remotely through PowerShell Invoke command. I can run the VB Script locally but not remotely as the vbscript file is not present on the remote machine. I don't want to copy the script file on remote machine.
    Please let me know how to run vb script on remote machine. Below is the code.
    Collection<PSObject> output
    = null;
            using
    (Runspace runSpace =
    RunspaceFactory.CreateRunspace())
                runSpace.Open();
                using
    (Pipeline pipeline = runSpace.CreatePipeline())
    RunspaceInvoke invoke =
    new RunspaceInvoke();
    PowerShell ps = PowerShell.Create();
                    ps.Runspace
    = runSpace;
                    ps.AddCommand("invoke-command");
                    ps.AddParameter("ComputerName",
    "RemoteServerName");
    ScriptBlock sb = ScriptBlock.Create("cscript E:\\Test\\DeleteFiles.vbs");
                    ps.AddParameter("ScriptBlock", sb);
                    output
    = ps.Invoke();
    Regards, Parveen

    Hello Parveen,
    Please refer to the following thread
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/7562eefb-7fba-4bf6-834e-82256f159155/run-script-on-remote-macine?forum=csharpgeneral
    See his code:
    You can use WMI to create processes on a remote machine. In C#, use the ManagementClass.
    using System;
    using System.Management;
    using System.Collections.Generic;
    public class MyClass
    public static void RunNotepad()
    ManagementPath p = new ManagementPath(@"\\targetMachine\root\cimv2:Win32_process");
    ManagementClass m = new ManagementClass(p);
    m.InvokeMethod("Create", new Object[] {"notepad.exe"});
    See: Creating Processes Remotely
    Note that the the scrpt file is not executable so you have to create script like this:
     cscript.exe "\\yourmachine\script\test.vbs".
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Have set google as my Safari home page, am prompted to install chrome. I already have chrome as my main browser, would like to access chrome through safari

    Have set google as my Safari home page, am prompted to install chrome. I already have chrome as my main browser, would like to access chrome through safari

    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Cick:  Remove all website data
    Then empty the Safari cache. Command + Option + E
    Quit and relaunch Safari to test.

  • Want to use old research program that worked through firefox chrome folder via modification of installed-chrome.txt file

    there is a program (ESP, the Experience Sampling Program) that allows easy development and installation of research protocols via palm pilots. The program runs in mozilla-based browsers--Mozilla or Firefox. After the program is installed, it is accessed by hitting the URL chrome://espdesktop/content/desktop.xul. Previously, this required editing the file "installed-chrome.txt" file which was located into the chrome subfolder. The newest versions of firefox have done away with this subfolder. Not being a programmer, I am having trouble figuring out how to access the program now.

    First thing I noticed is you are running on an outdated/older version of Firefox & not the current version. Download it from here:
    * At the top of the Firefox window click the Firefox button, go over to the Help menu and select About Firefox. For Windows XP: Go to the Help menu and select About Firefox.
    * The About Firefox window will open and Firefox will begin checking for updates. If updates are available, they will begin downloading automatically. If Firefox is already up to date, just close the About Firefox window.
    * When the updates are downloaded and ready to be installed, click Restart to Update. Firefox will be restarted and the updates will be installed.

  • Kicking off download and install Updates remotely

    Hello,
    I know that in Windows 2012 you can launch sconfig and then run "Download and Install Updates" which I have found to be an extremely useful tool.  Can I launch this (or a similiar) command remotely?  We have a patching system, however
    I am not 100% confident in it.  In the event that it failes I would like to be able to manually run Windows Update remotely on multiple servers, possibly a list from a .csv file.
    Can this be down through powershell?
    Thanks. 

    I haven't tried the approach of launching sconfig remotely to try and install updates, but use the Microsoft.Update.Session COM object frequently for update installations. My initial thought is that you wouldn't be able to do so remotely because the process
    launched remotely would be a non-interactive process and sconfig is most likely using the microsoft.update.session COM object for the installations. Again, not tested but based on my experience with this type of thing.
    The Microsoft.Update.Session COM Object (more specifically, the CreateUpdateInstaller() method) doesn't allow for installing updates remotely and this is by design.
    Reference: http://msdn.microsoft.com/en-us/library/windows/desktop/aa386863(v=vs.85).aspx
    It requires an interactive process and has checks internally to test for this. Even with PowerShell remoting, this
    will fail. I imagine that you could still download the updates remotely, but installing is a different beast all together. You will have to look at using a scheduled job or PSExec to create a remote service that can then run the code as in interactive process.
    I have written a tool called
    PoshPAIG that can do a lot to help install updates remotely (uses psexec) but doesn't yet support downloading and installing updates (someone posted updated code on my codeplex site that does allow for this) that may
    be useful to you. 
    If a UI isn't your thing, I also have
    PowerShell approach available that you could use as well.
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • After hard drive wipe, can't install Chrome! Need it!

    I just went through a major Apple phone support trauma and wiped my hard drive clean, then reinstalled with Time Machine. All my apps are working fine but one is dependent on Chrome. I install Chrome, but all that happens when I try to open it is the icon bounces a few times and then sits there.
    I'm using Yosemite and have no other software or App issues except that my iPhoto Library demands a repair on each start up. Another question, I suppose.
    TIA.

    I have no idea why Chrome is doing that.  I assume since you just installed there are no extensions causing any start issues.  It is possible that you have some other app that is conflicting with Chrome.  What happens if you launch Safari?  Try to do a safe boot and see if Chrome starts.  If it does this means some conflict with another program when you boot under your account.

  • Can I upgrade mac OS 10.7 to 10.8 remotely through ARD?

    Can I upgrade mac OS 10.7 to 10.8 remotely through ARD?

    Yes. Sort of.
    Using ARD, you can copy an Install Mac OS X.app to the target machine. Then launch the application and start the installation process. At this point, the machine will "go dark" and will eventually reappear in ARD once the installation is complete.

  • How to install .xpi extension through cmd on windows in firefox

    i need steps to install .xpi extension through cmd on windows in firefox

    Is '' -install-global-extension'' still valid or has it been deprecated ?
    * see https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options?redirectlocale=en-US&redirectslug=Command_Line_Options#Add-ons
    * http://kb.mozillazine.org/Installing_extensions#Global_installation
    * and the Firefox 4 changes <br /> https://developer.mozilla.org/en-US/docs/Extensions/Updating_extensions_for_Firefox_4#XPI_unpacking
    Firefox 4 no longer extracts XPIs when installing extensions. It just places the XPI file in the user profile, and then reads the chrome files and others directly out of the XPI.
    If your .xpi is not from Mozilla addons I guess we may not be sure what it is intended to do, or what version of Firefox it was designed for.

  • FYI: Testing Active Directory Replication Latency/Convergence Through PowerShell (Update 2)

    see:
    (2014-02-01) Testing Active Directory Replication Latency/Convergence Through PowerShell (Update
    2)
    Jorge de Almeida Pinto [MVP-DS] | Principal Consultant | BLOG: http://jorgequestforknowledge.wordpress.com/

    Might that link has been been broken.Here is the link
    http://jorgequestforknowledge.wordpress.com/2014/02/01/testing-active-directory-replication-latencyconvergence-through-powershell-update-2/
    Nice Jorge. Thanks for sharing.
    Regards~Biswajit
    Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights.
    MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, MCTS, Enterprise Admin
    MY BLOG
    Domain Controllers inventory-Quest Powershell
    Generate Report for Bulk Servers-LastBootUpTime,SerialNumber,InstallDate
    Generate a Report for installed Hotfix for Bulk Servers

  • Could not connect to DB remotely through Toad using instantclient

    Hi All,
    Please, i am facing urgent issue while trying to connect to DB remotely through Toad.. Already searched a lot and followed all suggested solutions but without any success..
    "instantclient" already downloaded and configured as below :
    dll files like "oci.dll,... etc" are here : C:\Oracle\instantclient\instantclient_11_2
    Created both tnsnames.ora & listener.ora are here : C:\Oracle\instantclient\network\admin
    And did the below in user/system variables :
    User Variables :
    =========
    TNS_ADMIN with value "C:\Oracle\instantclient\network\admin"
    System Variables :
    ===========
    TNS_ADMIN with value "C:\Oracle\instantclient\network\admin"
    ORACLE_HOME with value "C:\Oracle\instantclient"
    Path edited and added this value "C:\Oracle\instantclient\instantclient_11_2"
    But i am still facing the below error :
    ORA-12541: TNS:no listener
    Really, appreciate your help !
    Thanks & regards
    Mohammed

    Mohammed ... wrote:
    Thanks all your help and support..
    I reconfigured the instant client following below link :
    [http://www.dbatoolz.com/t/installing-oracle-instantclient-basic-and-instantclient-sqlplus-on-win32.html]
    and followed your advises as well and i can now connect to database though any user
    But unfortunately, i cannot connect as sys user, it gave me below error :
    C:\Users\mohammed>sqlplus sys as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Tue May 7 17:29:56 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-12560: TNS:protocol adapter error
    C:\Users\mohammed>
    Could you please advise..
    Regards,
    MohammedIf the client is on the same machine as the database, then you don't have ORACLE_SID set.
    More likely the database is on a different server, you have to specify 'sqlplus sys/pswd@dbname'.
    And your db will need to be configured to allow remote sysdba authorization, which is not a good idea from a security perspective.

  • Can it be done through powershell?

    we just increase drive C space on more than 30 Windows 2008 R2 VM servers.  We do not want to manaully log onto
    each server to do scan disk and extend the volume.
    Can it be done through powershell?
    thank you for your help.

    enter-pssession servername
    diskpart /s  diskpartscriptfile.txt 
    or upgrade all your servers to  2012
    Dan
    This would require touching each server. Invoke-Command is a much better choice for this scenario, as it can handle each machine in one go.
    EDIT: We still don't know if the OP has remoting enabled. I've yet to get an answer to that question.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)
    correct, I was giving an example. Try one server like that to see if it works and then start with the scripted solution.  
    Dan

  • App Deployment through powershell in SharePoint 2013

    Hi,
    Recently I have configured App Development Environment in SharePoint 2013,And we are able to deploy App through Visual Studio in our local Environment.
    But when we are trying to Deploy App Package through PowerShell in our production ,it has been deployed successfully but when we are accessing that particular App it is showing blank screen.
    Kindly any one provide me the solution.
    Thanks in Advance.
    Regards,
    Dinesh Reddy
    Regards, Dinesh R.

    Hi,
    A suggestion is that you can uninstall this app and then install it again to see if this operation can make it right.
    If it is still a blank page after reinstalled, I would recommend to create a new and clean app to perform the deployment again.
    Feel free to reply with the test result.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

Maybe you are looking for

  • How can I add a second DVI port to my G5

    I just want to be able to use two monitors but my computer has one dvi and one adc port is there a card I can buy that has two dvi ports?

  • PDFMaker Office 2010 fails while creating the PDF

    I have a Window 7 laptopn with Office 2010 Adobe Acrobat 8.2.5. Slect create PDF button on tool bar and process starts but hangs while "onverting to PDF". Error occurs in MS Word, Excel & Powerpoint. System has worked fine up unitl a week ago. PDF cr

  • Numeric Folders in "Home" folder

    I have redirected folders that sit under a shared folder called "home".  The question I have is why are random folders being created with numeric values, for example; "99811968" ? By the way this only started happening in the past few months.

  • Mail sending, picking up many times (but not really)

    We are a school running about 100 Macbook Pro laptops running OS 10.7.5.  For a couple of our users we've had the experience that their Mail program seems to go a little bit crazy and makes a whole bunch of picking up (bong) and sending (whoosh) soun

  • How can I add header on printing with Numbers

    How can I add header on printing with Numbers? The previous version use to have it and I cannot find it in the new one ...