Powershell, WMIC and remote execution in Tidal

Anyone else leveraging these tools to remotely execute against application/database tiers? We are perfroming basic activities - stop/start service, remote batch file execution, file operational activities. We are trying to simplify our toolsets but in addtion make them more powerful and extend the usabiliuty of tidal in our enterprise. I am wondering what other creative things people have done?
Marc

Here's a little more advance technique we put together.. a little trick to do a dynamic varset with powershell w/ API
we detect a file then count the file rows, we then do some math, round the result and set that integer into a number variable (global) this is then used as the seconds in a downstream "sleep" job to dynamically postpone retrieving a return file giving the vendor time to process it through their system and return a file to us.
Job details
CMD POWESHELL
PARAMS
$trans = Get-Content '\\gmo\dev\app\tidal\test\Confirmation.csv';
$FTP_SleepTime =  [Math]::Round($trans.Count * .01  );
Write-Host Sleep time should be a round number $FS_SleeptTime;
invoke-command -scriptblock {d:\TIDAL\Scheduler\Client\sacmd.exe varset -n FLAG_FTPSleepTime -v $FTP_SleepTime}
Environment
POWERSHELL 2.0 on Windows Server 2008 O/S
Tidal Client installed locally  on Agent D:\ drive with it's default alias pointing to it's opwn database environment
Client ver 5.3.1.317
Agent ver 3.0.1.14
Master ver 5.3.1.318

Similar Messages

  • [Forum FAQ] How to install and configure Windows Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely

    As we all know,
    the Windows Server Essentials Experience role is available in Windows Server 2012 R2 Standard and Windows Server 2012 R2 Datacenter. We can add the Windows Server
    Essentials Experience role in Server Manager or via Windows PowerShell.
    In this article, we introduce the steps to install and configure Windows
    Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely. For better analyze, we divide this article into two parts.
    Before installing the Windows Server Essentials Experience Role, please use
    Get-WindowsFeature
    PowerShell cmdlet to ensure the Windows Server Essentials Experience (ServerEssentialsRole) is available. (Figure 1)
    Figure 1.
    Part 1: Install Windows Server Essentials Experience role locally
    Add Windows Server Essentials Experience role
    Run Windows PowerShell as administrator, then type
    Add-WindowsFeature ServerEssentialsRole cmdlet to install Windows Server Essentials Experience role. (Figure 2)
    Figure 2.
    Note: It is necessary to configure Windows Server Essentials Experience (Post-deployment Configuration). Otherwise, you will encounter following issue when opening Dashboard.
    (Figure 3)
    Figure 3.
      2. Configure Windows Server Essentials Experience role
    (1)  In an existing domain environment
    Firstly, please join the Windows Server 2012 R2 Standard computer to the existing domain through the path:
    Control Panel\System\Change Settings\”Change…”\Member of. (Figure 4)
    Figure 4.
    After that, please install Windows Server Essentials Experience role as original description. After installation completed, please use the following command to configure Windows
    Server Essentials:
    Start-WssConfigurationService –Credential <Your Credential>
    Note: The type of
    Your Credential should be as: Domain-Name\Domain-User-Account.
    You must be a member of the Enterprise Admin group and Domain Admin group in Active Directory when using the command above to configure Windows Server Essentials. (Figure 5)
    Figure 5.
    Next, you can type the password for the domain account. (Figure 6)
    Figure 6.
    After setting the credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 7)
    Figure 7.
    By the way, you can use
    Get-WssConfigurationStatus
    PowerShell cmdlet to
    get the status of the configuration of Windows Server Essentials. Specify the
    ShowProgress parameter to view a progress indicator. (Figure 8)
    Figure 8.
    (2) In a non-domain environment
    Open PowerShell (Run as Administrator) on the Windows Server 2012 R2 Standard and type following PowerShell cmdlets: (Figure 9)
    Start-WssConfigurationService -CompanyName "xxx" -DNSName "xxx" -NetBiosName "xxx" -ComputerName "xxx” –NewAdminCredential $cred
    Figure 9.
    After you type the commands above and click Enter, you can create a new administrator credential. (Figure 10)
    After creating the new administrator credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 11)
    After a reboot, all the configurations will be completed and you can open the Windows Server Essentials Dashboard without any errors. (Figure 12)
    Figure 12.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Part 2: Install and configure Windows Server Essentials Experience role remotely
    In an existing domain environment
    In an existing domain environment, please use following command to provide credential and then add Server Essentials Role: (Figure 13)
    Add-WindowsFeature -Name ServerEssentialsRole
    -ComputerName xxx -Credential DomainName\DomainAccount
    Figure 13.
    After you enter the credential, it will start install Windows Server Essentials role on your computer. (Figure 14)
    Figure 14.
    After the installation completes, it will return the result as below:
    Figure 15.
    Next, please use the
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with a remote computer. You can use the commands below:
    Enter-PSSession –ComputerName
    xxx –Credential DomainName\DomainAccount (Figure 16)
    Figure 16.
    Then, please configure Server Essentials Role via
    Add-WssConfigurationService cmdlet and it also needs to provide correct credential. (Figure 17)
    Figure 17.
    After your credential is accepted, it will update and prepare your server. (Figure 18)
    Figure 18.
    After that, please type “Y” to continue to configure Windows Server Essentials. (Figure 19)
    Figure 19.
    2. In a non-domain environment
    In my test environment, I set up two computers running Windows Server 2012 R2 Standard and use Server1 as a target computer. The IP addresses for the two computers are as
    below:
    Sevrer1: 192.168.1.54
    Server2: 192.168.1.53
    Run
    Enable-PSRemoting –Force on Server1. (Figure 20)
    Figure 20.
    Since there is no existing domain, it is necessary to add the target computer (Server1) to a TrustedHosts list (maintained by WinRM) on Server 2. We can use following command
    to
    add the TrustedHosts entry:
    Set-Item WSMan:\localhost\Client\TrustedHosts IP-Address
    (Figure 21)
    Figure 21.
    Next, we can use
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with the remote computer. (Figure 22)
    Figure 22.
    After that, you can install Windows Server Essentials Experience Role remotely via Add-WindowsFeature ServerEssentialsRole cmdlet. (Figure 23)
    Figure 23.
    From figure 24, we can see that the installation is completed.
    Figure 24.
    Then you can use
    Start-WssConfigurationService cmdlet to configure Essentials Role and follow the steps in the first part (configure Windows Server Essentials Experience in a non-domain environment) as the steps would be the same.
    The figure below shows the status of Windows Server Essentials.
    Figure
    25.
    Finally, we have successfully configured Windows Server Essentials on Server1. (Figure 26)
    Figure 26.
    More information:
    [Forum
    FAQ] Introduce Windows Powershell Remoting
    Windows Server Essentials Setup Cmdlets
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • TEO 2.3 and Powershell remote execution error

    Hi,
    I am running into errors when trying to run powershell scripts on a remote target. I have tried the following things so far using just "get-date" as a command in the script.
    1. Set remote execution policy to unrestricted.
    2. Enable the checkbox for accessing remote resources.
    And after setting the above, I get the following error.
    Exception has been thrown by the target of an invocation.
    Access is denied.
    Now, if I try using the Run Windows Command activity, I am able to run the required commands on the remote target, but powershell script activity fails for the same target.
    Surprisingly, this works fine on TEO2.2
    Thanks,
    Rishikesh R.

    For #2, why did you enable that? This means you need to enable remote resources, like a remote shared drive or something like that. So you make a double hop(in Microsoft terms). You hop once to your target and once again to your remote shared drive. WMI does not allow this for security policy reasons so we have to do something else when you select that.
    Try unchecking it and running it and see if that helps. If not, open a TAC case and someone from support can assist you.
    -shaun roberts
    CPO/CIAC Support Team Lead
    [email protected]

  • Loading custom modules and setting execution policy to enable on powershell startup

    how do I load custom modules when i startup powershell. And also how do I allow execution of scripts as well on startup?
    thanks

    Hi,
    You can use your profile to load custom modules when you launch PowerShell:
    http://technet.microsoft.com/en-us/library/ee692764.aspx
    As for the execution policy, just set it once and you don't need to worry about it again (as long as you don't set it for an unusual scope that is):
    http://technet.microsoft.com/en-us/library/hh849812.aspx
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • Remote Execution and Speeding it up!?!

    Hi all,
    I have recently posted a few queries on parallel processing etc and have now sorted that. However (you knew there'd be a however didnt you!) I am using remote sequence calls on the proposed system we are using, due to the large amount of processing going on and the parallel threads scheme I am using.
    I have set up a simple sequence (5 LV VIs taking data from the sequence context and squirting the data into the report string, just to verify data flow) and have run this locally and remotely both from a sequence call. the difference in execution times was astonishing to say the least.
    Local Execution.
    Each vi was approx 15ms.
    Overhead was approx 25ms.
    Total Time around 100ms
    Remote execution
    Each vi was approx
    15ms again
    Overhead was around 2.9s!!!!!
    the total time was about 3 seconds to run the same sequence call remotely.
    I have tried many many things to help speed things up. I have modified the preload/unload options, I have set the sequence files and code modules up on the remote machines harddrive and set the file paths correctly.
    does anyone have any experience of speeding the remote execution up? The overhead is unacceptable for my system (I have a cycle time of 1.2s per remote execution) so I may just have to code the whole thing in LV rather than use TS
    My previous discussions...
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=5065000000080000003D440000&USEARCHCONTEXT_CATEGORY_0=_8_&USEARCHCONTEXT_CATEGORY_S=0&UCATEGORY_0=_8_&UCATEGORY_S=0

    A few ideas
    1) What parameters are you passing to the remote sequence? Parameters might end up needing to be duplicated on the other machine, this could be slow if you have a lot or big parameters(i.e. large arrays). You could pass references to the variables instead of the variables themselves to speed things up if needed. Or find other ways to reduce the number or size of parameters
    2) are you timing the first run through the uut loop or the second? the first iteration of the uut loop is going to require the remote machine to load the sequence file. This is a one time cost though as the sequence file will stay loaded as long as the sequence call step is loaded.
    3) How many step results do you have in the remote sequence (i.e. how many steps with result recordin
    g enabled)? The results for the remote sequence must be passed back to the main machine and recreated on that machine. If you have a large number of results this could be slow. You could speed things up by reducing the number of results you are storing either by disabling record results on the steps on which you don't need them, or disabling results for the entire sequence or sequence file that you are running remotely.
    Doug Melamed
    NI

  • Routing and Remote Access fails to install

    Hello, I recently installed Windows Server 2008 beta 3 onto my new computer, which went smothly. I have ADDS, DHCP, DNS, IIS, Terminal Services, and Network Policy and Access Service installed and they all work perfectly. However, I recently tried to install Routing and Remote Access, but I got the following error message when I finished the configuration wizard: "Installation of the Routing and Remote Access Service failed because: Class not registered (80040154). Whats causing this, and how do I fix this?

    I also have this trouble of an error when installing Routing and Remote Access "class not registered..."
    It is a Windows Server 2008 RTM clean install.
    Added machine to our Windows 2003 domain and then after reboot added Windows Powershell.
    Logged in as domain admin and then when tried to add routing and remote access got the message described by everyone else.
    Like others I need to know how to get over this problem.

  • Force PowerShell version on remote session

    Hi, as the title suggest, I want to explicitly use PowerShell 2.0 to execute scripts and commands, why? Because SharePoint 2010 only supports PowerShell 2.0. So my problem:
    I have SharePoint 2010 installed on a Windows Server 2012 (with PowerShell 4.0 as default). When I execute a SharePoint PowerShell command on the server, it only works when I go to a PowerShell 2.0 console (powershell.exe
    -v 2). But when I am on another server and start a PowerShell 2.0 console, the remote session I create with e.g. Enter-PSSession is always PowerShell 4.0, the version of the host. This will prevent me from executing SharePoint commands remotely
    So my question is, is it possible in some way to force a specific version of PowerShell with a remote session?

    Hi TechPeepz,
    To start powershell 2.0 on remote session, please refer to the steps below:
    Server02 remote access Server01
    1. Run the cmdlet below on server01
    Register-PSSessionConfiguration -Name PS2 -PSVersion 2.0
    2. Run the cmdlets below on server02
    $s = New-PSSession -ComputerName Server01 -ConfigurationName PS2
    Enter-PSSession -Session $s
    For more detailed information, please refer to this article:
    Starting the Windows PowerShell 2.0 Engine
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • Messaging and remoting through coherence

    Hi all
    I'm really coherence noob...
    But I want to implement subj by coherence...
    How to implement reliable delivery to queue and/or topic (just done what jms can do) ?
    (now I'm listen a map with messages, and remove received messages from the map.. damn... it's to messy)
    How to allow client call service in any available node once? (i do it by the same way but with blocking queue in client)
    I think it would be great to describe such common "EA patterns" implementations in coherence wiki... isn't it?

    Hi,
    first of all, Coherence might not be the best option to do messaging and remoting, as it is not the purpose of Coherence to solve these problems.
    However, the listener for a map with messages is not a bad start. Backing map listeners are also something you might want to look at.
    Compared to the cache listener they give you a balancing of the load across storage enabled nodes at the price of the backing map listener being able to listen only for events for keys it owns.
    You could also look at InvocationService. That is most similar to remoting and messaging, however InvocationService is not fire&forget, if the invoked node goes down, nothing guarantees the execution of the invocable instance, so you would have to implement failover (retry, redelivery and duplication detection).
    Best regards,
    Robert

  • Remote execution using DataGridMemberBean

    is it possible to execute remote functions using DataGridMemberBean cache?
    e.g. All the ApplicationContexts are registered in the coherence cache com.tangosol.coherence.spring.ClusteredApplicationContextBeans.
    NamedCache contextCache = CacheFactory.getCache("com.tangosol.coherence.spring.ClusteredApplicationContextBeans");
    Map results = contextCache.invokeAll( new AlwaysFilter(),
    new InvocableMap.EntryProcessor() {
    public Object process(Entry entry) { ... }
    public Map processAll(Set setEntries) { ... }
    Will InvocableMap.EntryProcessor.process() be execute in different ApplicationContexts?
    Thanks!

    Hi Divakar Ponnada,
    >>We are using VS2013, I have configured Test Controller and Test Agent with visual studio. When i run the automated coded ui test cases from Test Controller machine and its executed in the same machine instead of Test Agent machine.
    Could you share me a screen shot about the settings in Test Settings like mine?
    Actually the test controller just calls the test agent, and then the test agent would run your tests, and “Test execution method:” would be related to the Test Agent.
    So you would provide us more information about how you install your VS, test controller and test agent in your side.
    For remote tests, your test agent would not in the same machine with your VS IDE.
    If your test agent in a sing machine, we would select “Remote execution” in above screen shot.
    For example, two machine A, and B.
    A: VS and Test Controller.
    B: Test Agent.
    If so, we could select “Test execution method=Remote execution”, and select the Controller name like the above screen shot, and then enable the .testsettings file under
    Test menu of VS IDE.
    But if your VS and Test Agent are in the same machine A, test controller is in machine B, we would select “Test execution method=Local execution with remote collection”.
    So you would make sure that you have enabled the testsettings file, and select the correct “Test execution method”.
    To run a coded UI test remotely,
    you must set up your test agent to run as a process.
    In addition, one important issue is that you have to make sure that your Test Agent machine's desktop is active, since the playback actions are in your Test Agent machine, not your VS IDE machine.
    Best Regards,
    Jack
    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.

  • Invoking Powershell modules on remote clients via package/command line

    Hello Everyone -
    I have two modules(functions) that i've written and tested successfully locally in my environment that give me Uninstall and Repair functionality on whatever the string contains. Both .psm1's are delivered via a SCCM pkg that lands both into folders
    in the Modules directory. My issue is I can't seem to invoke this in a deployment scenario...as i'd like to deliver the "Invoke-command" using SCCM's command line to simply say...
    Invoke-Command -scriptblock { Do-This "<string>" }
    The above command works fine locally when...(exePol is set to Bypass).
    1.)Modules have respective folders living in WindowsPowershell\Modules directory named xxxx.psm1
    2.)Import-Module -name <path\name of module>
    3.)Verify Modules are loaded(moduleType is script)
    But when fabricating the folders\files above with SCCM, and running the Invoke-Command(in many different ways remotely), i recieve the cmdlet, program doesn't exist and has no idea what i'm talking about. Folders\Files for .psm1's are present and do
    show when running Get-Module -Listavailable locally on targeted clients.
    Maybe this is related to the Import-Module command and the context i'm trying to delivery it in?
    I've tried multiple scenario's of...
    A.) Psexec that launches powershell, followed by the Import-Module -name <path\name of module>
    B.) .Bat file that launches powershell with the same Import-Module syntax
    C.) PS1 that includes the same Import-Module line.
    D.) Just straight from the command line of the Pkg/Program.
    Has anyone tried this? Is there a better method when trying to deliver invoke-command on a module/function to a client via SCCM? 
    TIA 

    [I see that the you are running the powershell.exe and then importing the module in the command line for the Program you created in SCCM, so just importing the module will do the repair action for you ??]
    Not sure how else i would run a Import-Module without calling upon powershell.exe. The reason for using Import-Module first is it only creates the abilty of whatever the module(function in this case) on the client. So if i can get the remote
    Import-Module to work, which would then allow me in the future to use an Invoke-Command -scriptblock { Do-This "string" } on the clients. In this case its both an Uninstall and Repair function with an assortment of switches and arguements that will aide me
    in the future in managing our apps. For me to use the Modules, i would need to Invoke-Command as that is how the functions are built.
    Okey so the module does get dumped to the end machine.
    Suppose you have a test machine TEST01 where the Test.psm1 file  (having Test-Function)is delivered through SCCM.
    Then try this and tell if it works:
    PS C:\> $session = New-PSSession -ComputerName TEST01
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Import-Module Test.psm1 }
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Test-Function #inside your Module}#Or Simply try below:
    PS C:\> Invoke-Command -ComputerName TEST01 -ScriptBlock {Import-Modules Test.psm1;Test-Function #inside your Module}
    I think what you are doing is below.....for the example am taking "webadministration" module:
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {Import-Module web*}
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {get-website}
    The term 'get-website' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
    the spelling of the name, or if a path was included, verify that the path is correct and try again.
    + CategoryInfo : ObjectNotFound: (get-website:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
    + PSComputerName : sdwuweb017
    Point here is you need to import the module and work with it in an already opened session....If you specify a computername every time then PowerShell opens the Session does what you want it to do and tears down the session. To persist the importing of the
    module it must be done in a session which we make using New-PSSession and then run the commands against that session.
    I might have misunderstood the problem but this is what I have got so far.
    Hope this helps
    Knowledge is Power{Shell}.

  • PowerShell Get-Cluster Remote API Error

    I am running a powershell script to get cluster information.  The script works perfectly sometimes but sometimes fails on the get-cluster -domain command.  It will fail and then maybe a half hour later it will work.  Here is the exact
    error:
    Message: Could not retrieve the list of clusters on the network.  A remote API error occurred.
    ErrorCode: -2147022769
    Any ideas on how to track down exactly what the problem is and correct it?

    The similar problem here:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/9626fa01-968f-4793-b2ee-b2f7e8bf1517/powershell-getcluster-a-remote-api-error-occurred?forum=winserverClustering
    You may try use -Name switch instead of domain, but its a workaround, not a solution. I would recommend installing network monitor to proper cluster servers if you see something that may catch your eyes.
    Please remember to "Mark as answer" if it helps. Thank You.

  • Remote System and Remote Key Mapping at a glance

    Hi,
    I want to discuss the concept of Remote System and Remote Key Mapping.
    Remote System is a logical system which is defined in MDM Console for a MDM Repository.
    We can define key mapping enabled at each table level.
    The key mapping is used to distinguish records at Data Manager after running the Data Import.
    Now 1 record can have 1 remote system with two different keys but two different records cannot have same remote system with same remote key. So, Remote key is an unique identifier for record for any remote system for each individual records.
    Now whenever we import data from a Remote System, the remote system and remote key are mapped for each individual records. Usually all records have different remote keys.
    Now, when syndicating back the record with default remote key is updated in the remote system that is sent by xml file format.
    If same record is updated two times from a same remote system, the remote key will be different and the record which is latest contains highest remote key.
    Now, I have to look at Data Syndication and Remote key.
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back. But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    Regards
    Kaushik Banerjee

    You are right Kaushik,
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back.
    Yes, but if they are duplicate, they needs to be merged.
    But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    This is after merging. So whichever remote key has tick mark in key mapping option(default) , it will be syndicated back.
    Pls refer to these links for better understanding.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/80eb6ea5-2a2f-2b10-f68e-bf735a45705f
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/7051c376-f939-2b10-7da1-c4f8f9eecc8c%0c
    Hope this helps,
    + An

  • Search for [Remote Key] and [Remote System] in Data Manager

    Hello all
    I would like to be able to search on the remote key and the remote system in the MDM Data Manager is that not possible? I thought I remembered seeing that possibility under the Free-Form Search but now I can't find it.
    I have, however, found this in the Data Manager reference guide:
    REMOTE SYSTEM AND REMOTE KEY FIELDS
    MDM uses the remote systems defined in the Remote Systems table
    within the MDM Console to store and maintain key mapping information
    for each record or text attribute. It does this using a virtual “key
    mapping” field that you never see in the MDM Client.
    This virtual key mapping field is very much like a qualified lookup field
    into a virtual key mapping qualified lookup table.
    Key Mapping information stored in virtual lookup field
    The Remote System and Remote Key fields are normally not visible;
    however, they do appear in several places in the MDM Client.
    Specifically, both fields: (1) appear in the File > Export dialogs in Record
    mode for exporting value pairs; (2) are recognized by the File > Import
    dialog in Record mode for importing value pairs; and (3) appear in the
    Edit Key Mappings dialogs in both Record mode and Taxonomy mode,
    for viewing and editing value pairs.
    Is there any way to search on the value in the remote key from the Data Manager?

    Not sure search i think not possible.
    But you can see keys as mentioned:
    Enable Key mapping in Console.
    MDM Client maens MDM Data Manager.
    They do appear in several places in the MDM Client or Data Manager. Three different methods to see in DM are given already below:
    Specifically, both fields: (1) appear in the File > Export dialogs in Record mode for exporting value pairs; (2) are recognized by the File > Import dialog in Record mode for importing value pairs; and (3) appear in the Edit Key Mappings dialogs in both Record mode and Taxonomy mode, for viewing and editing value pairs.
    BR,
    Alok

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Unplugging all network devices from Fios router prevents DVR freezing and remote control lock ups.

    All,
    I recently had a Verizon tech visit my house due to constant DVR and remote control freezing. TV content was freezing whether it was locally recorded, pulled from another DVR in the house, or On Demand. On a hunch after the tech tested everything and was about to leave, he unplugged my gigabit switch from the Fios router. Lo and behold everything started running perfectly. Since to the tech, the problem was solved, he closed the case and was on his way. The probem is of course I have more devices than the built in router switch provides ports for. My network is compised of an 8 port Netgear gigabit switch downstream from the Fios router with two wireless access points (with their own built in gigbait switches) connecting to the Netgear gigabit switch. There are no loops in the switch topology. I've tried changing out the router, the gigabit switch, removing the wireless acces points individually as well as plugging the access points directly into the Fios router switch (one at a time with no Netgear switch in the middle) and all scenarious cause the DVR/remote control freeezing to come back. The only devices I can plug into the Fios router without causing freezes are PC's....anything with it's own switch essentially brings the network to it's knees. If anyone has an idea how to get my network back in one piece AND make the DVR's/remotes behave, I'd greatly appreciate the help!
    My Fios equipment:
    MI-424WR GEN-3I  rev I (eye) running firmware 40.19.36
    5 Motorola HD-DVRs all QIP 7232-2 running software release 1.9.1 platform build 25.39 (Oct. 22, 2012)
    Specific config:
    75/35 Fios connecting via ethernet from ONT. Set-top boxes connect to Fios router coax port via powered splitter.
    *All SNR/dB mesasurements taken by the tech from the set-top boxes and router are well within spec.
    Fios router provides DHCP addressing. Wireless N access points are configured for roaming with the same SSID and non-overlapping channels. Access points are not providing routing or IP adressing...all layer 3 and up services still provided by Fios router
    Diagram:
    ONT
      |
    Fios Router ---------Cable Splitter---------Set Top Boxes
      |
    Netgear Switch
      |           |
    WAP1    WAP2

    WayfarerII wrote:
    ... DVR ... remote ... freezing ... TV ... whether ... locally recorded, pulled from another DVR ... 
    ... tech ... unplugged my gigabit switch from the Fios router ... and ... everything started running perfectly ...   
    ... config:
    75/35 Fios ... via ethernet from ONT ... Set-top boxes connect to Fios router via powered splitter ...
    ONT
      |
      | cat5
      |
    Fios Router ---------Cable Splitter---------Set Top Boxes
      |
    Netgear Switch
      |           |
    WAP1    WAP2
    I am inclined to echo several of the "tns" comments, particularly with respect to your splitter.  My layout is based on a standard 8-port splitter of the type usually supplied in a VZ install.  In addition I do have a ChannelPlus device that functions as a powered splitter, but its use is limited to distribution of secondary TV signals to older analog TVs.  My first point then is that this may be an offender as "tns" has suggested.
    In addition, I'd describe your wiring as "non-standard" (red-colored items in the above diagram)  As you're no doubt aware, with 75/35 you don't really need Cat5e from the ONT (your original diagram).  It seems the highest tiers do require it, but in "standard" installations this run is coax directly to an 8-port non-powered splitter (below diagram), then from that splitter via coax to all STBs and CableCards, other TVs, et.), and also to the Actiontec.   Subsequent feeds from the Actiontec to wired devices (including WAPs) are via Ethernet (typically Cat 5e).
    In fact I don't immediately see how your STBs get additional services such as On Demand and IMG with the wiring shown in your diagram (perhaps someone can help me out here).  In "standard" installs the Actiontec must be connected via coax to the ONT to provide such services to other network clients.  I don't see that requirement being met here.
    For starters I'd recommend that you change your service from WAN Ethernet to WAN coax.  This can easily be accomplished over the telephone.  Then I'd run coax directly from the ONT to the Actiontec as in my revised diagram below (blue-colored items).  If your setup can manage with this arrangement, I think it will help greatly with the "freezing" issue.
    ONT - - - - - - coax - - - - -
                                             |
    Fios Router --- coax--- Standard 8-Port Splitter --- coax --- Set Top Boxes
    |cat5
    Netgear Switch
    |cat5           |cat5
    WAP1 WAP2
    Subsequent Note:  You provided additional info while I was composing a response, and I'd  like to offer another comment.  Structured wiring "panels" of the type usually available are pre-configured to provide data, phone and video.  This usually means that one is in certain respects limited by the ideas of the panel designer.  I have what can be called a structured wiring layout, but it really is composed of individual small custom networks for  each service (automation, security, video, data, telco, etc.), configured so that all wiring terminates in "home run" fashion at a central panel (a few details here: http://forums.verizon.com/t5/Home-Networking/Cmon-Show-Us-Your-Network/m-p/481733#M765 ).  This layout makes it easier to make adjustments (and there have been quite a few over the intervening years).  I'm thinking that in your case you may have to abandon the powered splitter (presumably) built into the panel in order to avoid your present fix.
    Subsequent Subsequent Note:   From your description it seems that you are using more than a single "whole house" DVR to supply programming to other devices.  This is a bit puzzling to me because somewhere along the line I recall reading that only a single whole house DVR was allowed on the network.  Can you elaborate a bit?

Maybe you are looking for

  • QuickTime Plug In Question

    10.6.8. Firefox is my default browser (up to date). I check Add-ons Manager and get a notidfication that Mozilla has determined tha the plug-in (7.6.6) is vunerable and should be updated. I go to the link and get this message: QuickTime Plugin 7.7.0

  • HR SCHEMA FILES PRESENT BUT TABLES NOT SHOWN IN SQL DEVELOPER - PLS HELP

    Dear DBA's, I am studying towards the OCA and working through the SQL Fundamentals I Exam guide text book by John Watson and Roopesh Ramklass. I have a problem with accessing the HR Schema tables in SQL Developer. I can get connected to the HR schema

  • Earpods seem to be functioning weirdly

    Okay, so my earpods have this weird issue. They work fine most of the time if the connector isn't moving, but when the connector moves about, the sound phases out and the bass dies out, and only very little is audible, if at all. After trying to set

  • AutoAttendant Question

    I configurate AuoAttendant in CCM4.1(3) with with CRA3.5 accroding to document .But when I dial the AutoAttendant number ,I hear the busy ring . I don't know what's wrong with my configuration.Could you give me the more troubleshooting detail.

  • HT5639 How to create ISO Disk image of a CD

    thanks