Looking for a Powershell Script which can put the scom servers in maintenance mode

Looking for a Powershell Script which can put the scom servers in maintenance mode so that SCOM should not send an alert during planned task.
Rahul

1. Provide list of servers line-by-line in C:\ServerList.txt, make sure you provide limited no. of servers, do not exceed 20 - 25 per batch
2. Save the script with suitable name (test.ps1)
3. Open PowerShell cmd prompt
4. Script accepts 3 params - TimeInMinutes, Reason and Comment
**** Please note, this script will work for SCOM 2012 R2
param([int32]$TimeMin, [string]$Reason, [string]$Comment)
try
$api = new-object -comObject 'MOM.ScriptAPI'
Import-Module operationsmanager
New-SCOMManagementGroupConnection
$Servers = Get-Content "C:\ServerList.txt"
$Time = (Get-Date).Addminutes($TimeMin)
Foreach ($Server in $Servers)
#Get Computer instance
$ComputerClass = Get-SCOMClass -Name Microsoft.Windows.Computer
$ComputerClassInstance = Get-SCOMClassInstance  -Class $ComputerClass | Where {$_.DisplayName -eq $Server}
If ($ComputerClassInstance -ne $Null)
$HealthServiceWatcherClass = Get-SCOMClass -name:Microsoft.SystemCenter.HealthServiceWatcher
#Get Health Service Watcher Class instance of the server
$HSWClass = Get-SCOMClass -Name Microsoft.SystemCenter.HealthServiceWatcher
$HSWClassIns = Get-SCOMClassInstance  -Class $HSWClass | Where {$_.DisplayName -eq $Server}
#Starting the maintenance mode
Start-SCOMMaintenanceMode -Instance $HSWClassIns -EndTime $Time -Reason $Reason -Comment $Comment
Start-SCOMMaintenanceMode -Instance $ComputerClassInstance -EndTime $Time  -Reason $Reason -Comment $Comment
Write-Host "Health Service Watcher and Agent server "$Server " kept in maintenance mode"  -foregroundcolor "green"
$api.LogScriptEvent('MaintenanceModeScript.ps1', 200, 0, "$Server kept in maintenance mode for $TimeMin minutes")
Else
Write-Host $Server" not found " -foregroundcolor "red"
$api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, "$Server could not be found in domain")
Catch [system.exception]
$api.LogScriptEvent('MaintenanceModeScript.ps1', 201, 1, $_.Exception.Message)
Faizan

Similar Messages

  • I am looking for a POS app which can read variable price barcodes

    I am looking for an app and barcode scanner to use as a POS system, where we can also use barcodes with the price in the barcode. The system must read fixed barcodes and variable price barcodes
    Is there such an app available

    I know of a retail store that uses a POS app. This app is from KWI and connects into the whole POS system for the entire store. The iOS device also has a special case with a built-in barcode scanner and credit card reader.
    This is a really cool device, but I'm not sure if you need other KWI components for it to work properly.
    Something to consider...

  • Looking for a Bluetooth headset that can control the iPhone's volume

    Hey guys,
    I'm looking to buy a cheap bluetooth headset that can control the iPhone's volume. The reason why I'm looking for that is because I want to take remote pictures. I currently have the Motorola H350 and it does have volume buttons except they control the headset's volume, not the iPhone's.
    I was wondering if you guys could help me.
    Thank you.

    Like ur self, I'm also looking for a bluetooth that can trigger the cam on iphone 4s, mainly for moment when I'm all alone for a picture.
    Have tried the following earphone without success, all purchase through Apple Store, guess will have to source somewhere else.
    1. Jawbone ERA - failed
    2. Bose BLuetooth Headset series II - failed

  • Pages won't load if another tab is waiting for a slow script which is on the same website

    If there is a tab that is waiting for slow script other tabs on the same website will be affected, even though they should not.
    Test case:
    1. Open a tab and run a slow script ( example: http://localhost/slow_script.php )
    2. Open another tab and run a normal script ( example: http://localhost/normal_script.php )
    What should happen:
    The normal script will load, the slow one will be waiting for the server to finish.
    What happens:
    The normal script wont start loading until the slow one finishes.
    Is there any way to work around this issue?
    Thanks !

    I have to add that the delay is not caused by the server itself. Running two web browsers or using multiple computers does the trick.
    Using a simple sleep function to make the script take longer seems enough to reproduce this bug. There is no need to consume actual resources on the web server.

  • Im Looking for a terminal script which shows the archlogo

    Hi there,
    I have found in the May screenshot thread this terminal script:
    Can anyone tell me where i found this good looking script. I will also make so nice screenshots from my terminal.
    Regards
    FightRight
    Last edited by FightRight (2007-05-12 17:45:54)

    Hello
    Ohh thanks for yours fast replys.
    I have found this Script:
    #!/usr/bin/perl
    use Switch;
    use strict;
    ## Config options ##
    ## What distro logo to use to use, Available "Archlinux Debian None" ##
    my $distro = "Archlinux";
    ## what values to display. Use "OS Kernel DE WM win_theme Theme Font Icons" ##
    my $display = "OS Kernel DE WM Win_theme Theme Icons Font";
    ## Takes a screen shot if set to 0 ##
    my $shot = 1;
    ## Command to run to take screen shot ##
    my $command = "scrot";
    ## What colors to use for the variables. ##
    my $textcolor = "\e[0m";
    ## Prints little debugging messages if set to 0 ##
    my $quite = 0;
    ## Script starts here ##
    ## Define some thing to work with strict ##
    my @line = ();
    my $found = 0;
    my $DE = "NONE";
    my $WM = "NONE";
    ## Hash of WMs and the process they run ##
    my %WMlist = ("Beryl", "beryl",
    "Fluxbox", "fluxbox",
    "Openbox", "openbox",
    "Blackbox", "blackbox",
    "Xfwm4", "xfwm4",
    "Metacity", "metacity",
    "Kwin", "kwin",
    "FVWM", "fvwm",
    "Enlightenment", "enlightenment",
    "IceWM", "icewm",
    "Window Maker", "wmaker",
    "PekWM","pekwm" );
    ## Hash of DEs and the process they run ##
    my %DElist = ("Gnome", "gnome-session",
    "Xfce4", "xfce-mcs-manage",
    "KDE", "ksmserver");
    ## Get Kernel version ##
    if ( $display =~ "Kernel"){
    print "\::$textcolor Finding Kernel version\n" unless $quite == 1;
    my $kernel = `uname -r`;
    $kernel =~ s/\s+/ /g;
    $kernel = " Kernel:$textcolor $kernel";
    push(@line, "$kernel");
    ## Find running processes ##
    print "\::$textcolor Getting processes \n" unless $quite == 1;
    my $processes = `ps -A | awk {'print \$4'}`;
    ## Find DE ##
    while( (my $DEname, my $DEprocess) = each(%DElist) ) {
    print "\::$textcolor Testing $DEname process: $DEprocess \n" unless $quite == 1;
    if ( $processes =~ m/$DEprocess/ ) {
    $DE = $DEname;
    print "\::$textcolor DE found as $DE\n" unless $quite == 1;
    if( $display =~ m/DE/ ) {
    push(@line, " DE:$textcolor $DE");
    last;
    ## Find WM ##
    while( (my $WMname, my $WMprocess) = each(%WMlist) ) {
    print "\::$textcolor Testing $WMname process: $WMprocess \n" unless $quite == 1;
    if ( $processes =~ m/$WMprocess/ ) {
    $WM = $WMname;
    print "\::$textcolor WM found as $WM\n" unless $quite == 1;
    if( $display =~ m/WM/ ) {
    push(@line, " WM:$textcolor $WM");
    last;
    ## Find WM theme ##
    if ( $display =~ m/Win_theme/ ){
    switch($WM) {
    case "Openbox" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.config/openbox/rc.xml")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /<name>(.+)<\/name>/ ) {
    while ( $found == 0 ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    $found = 1;
    close(FILE);
    case "Beryl" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.emerald/themes/schoensyDarkgreen/theme.ini")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /name=(.+)/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    case "Metacity" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    my $gconf = `gconftool-2 -g /apps/metacity/general/theme`;
    print "\::$textcolor $WM theme found as $gconf\n" unless $quite == 1;
    chomp ($gconf);
    push(@line, " WM Theme:$textcolor $gconf");
    case "Fluxbox" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.fluxbox/init")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /session.styleFile:.*\/(.+)/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    case "Blackbox" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.blackboxrc")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /session.styleFile:.*\/(.+)/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    case "Xfwm4" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.config/xfce4/mcs_settings/xfwm4.xml")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /<option name="Xfwm\/ThemeName" type="string" value="(.+)"\/>/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    case "Kwin" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.kde/share/config/kwinrc")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /PluginLib=kwin3_(.+)/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    case "Enlightenment" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    my $remote = `enlightenment_remote -theme-get theme` ;
    if( $remote =~ m/.*FILE="(.+).edj"/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    case "IceWM" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.icewm/theme")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /Theme="(.+)\/.*.theme/ ) {
    while( $found == 0 ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    $found = 1;
    close(FILE);
    case "PekWM" {
    print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.pekwm/config")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if( /Theme.*\/(.*)"/ ) {
    print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
    push(@line, " WM Theme:$textcolor $1");
    close(FILE);
    ## Find Theme Icon ans Font ##
    if ( $display =~ m/[Theme, Icons, Font,]/) {
    switch($DE) {
    case "Gnome" {
    print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
    if ( $display =~ m/Theme/ ) {
    my $gconf = `gconftool-2 -g /desktop/gnome/interface/gtk_theme`;
    chomp ($gconf);
    print "\::$textcolor GTK Theme found as $1\n" unless $quite == 1;
    push(@line, " GTK Theme:$textcolor $gconf");
    if ( $display =~ m/Icons/ ) {
    my $gconf = `gconftool-2 -g /desktop/gnome/interface/icon_theme`;
    chomp ($gconf);
    push(@line, " Icons:$textcolor $gconf");
    if ( $display =~ m/Font/ ) {
    my $gconf = `gconftool-2 -g /desktop/gnome/interface/font_name`;
    chomp ($gconf);
    push(@line, " Font:$textcolor $gconf");
    case "Xfce4" {
    my @sort = ();
    print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.config/xfce4/mcs_settings/gtk.xml")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if ( $display =~ m/Theme/ ) {
    if (/<option name="Net\/ThemeName" type="string" value="(.+)"\/>/ ) {
    print "\::$textcolor GTK Theme found as $1\n" unless $quite == 1;
    unshift(@sort, " GTK Theme:$textcolor $1");
    if ( $display =~ m/Icons/ ) {
    if (/<option name="Net\/IconThemeName" type="string" value="(.+)"\/>/ ) {
    print "\::$textcolor Icons found as $1\n" unless $quite == 1;
    unshift(@sort, " Icons:$textcolor $1");
    if ( $display =~ m/Font/ ) {
    if ( /<option name="Gtk\/FontName" type="string" value="(.+)"\/>/ ) {
    print "\::$textcolor Font found as $1\n" unless $quite == 1;
    unshift(@sort, " Font:$textcolor $1");
    close(FILE);
    ## Sort variables so they're ordered "Theme Icon Font" ##
    foreach my $i (@sort) {
    push(@line, "$i");
    case "KDE" {
    print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
    open(FILE, "$ENV{HOME}/.kde/share/config/kdeglobals")
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if ( $display =~ m/Theme/ ) {
    if ( /widgetStyle=(.+)/ ) {
    print "\::$textcolor Wiget Style found as $1\n" unless $quite == 1;
    push(@line, " Wiget Style:$textcolor $1");
    if (/colorScheme=(.+).kcsrc/ ) {
    print "\::$textcolor Color Scheme found as $1\n" unless $quite == 1;
    push(@line, " Color Scheme:$textcolor $1");
    if ( $display =~ m/Icons/ ) {
    if ( /Theme=(.+)/ ) {
    print "\::$textcolor Icons found as $1\n" unless $quite == 1;
    push(@line, " Icons:$textcolor $1");
    if ( $display =~ m/Font/ ) {
    if ( /font=(.+)/ ) {
    my $font = (split/,/, $1)[0];
    print "\::$textcolor Font found as $font\n" unless $quite == 1;
    push(@line, " Font:$textcolor $font");
    close(FILE);
    else {
    my @files = ("$ENV{HOME}/.gtkrc-2.0", "$ENV{HOME}/.gtkrc.mine",);
    foreach my $file (@files) {
    if ( -e $file ) {
    print "\::$textcolor Opening $file\n" unless $quite == 1;
    open(FILE, $file)
    || die "\e[0;31m<Failed>\n";
    while( <FILE> ) {
    if ( $display =~ m/Theme/ ) {
    if( /include ".*themes\/(.+)\/gtk-(1|2)\.0\/gtkrc"/ ){
    print "\::$textcolor GTK theme found as $1\n" unless $quite == 1;
    push(@line, " GTK Theme:$textcolor $1");
    if ( $display =~ m/Icons/ ) {
    if( /.*gtk-icon-theme-name.*"(.+)"/ ) {
    print "\::$textcolor Icons found as $1\n" unless $quite == 1;
    push(@line, " Icons:$textcolor $1");
    if ( $display =~ m/Font/ ) {
    if( /.*gtk-font-name.*"(.+)"/ ) {
    print "\::$textcolor Font found as $1\n" unless $quite == 1;
    push(@line, " Font:$textcolor $1");
    close(FILE);
    ## Display the system info ##
    if ( $distro =~ m/Archlinux/ ) {
    ## Get Archlinux version ##
    if ( $display =~ "OS"){
    print "\::$textcolor Finding Archlinux version\n" unless $quite == 1;
    my $version = `cat /etc/arch-release`;
    $version =~ s/\s+/ /g;
    $version = " OS:$textcolor $version";
    unshift(@line, "$version");
    my $c1 = "\e[0;32m";
    my $c2 = "\e[1;32m";
    print "$c1 __
    $c1 _=(SDGJT=_
    $c1 _GTDJHGGFCVS) $c1@line[0]
    $c1 ,GTDJGGDTDFBGX0 $c1@line[1]
    $c1 JDJDIJHRORVFSBSVL$c2-=+=,_ $c1@line[2]
    $c1 IJFDUFHJNXIXCDXDSV,$c2 \"DEBL $c1@line[3]
    $c1 [LKDSDJTDU=OUSCSBFLD.$c2 '?ZWX, $c1@line[4]
    $c1 ,LMDSDSWH' \`DCBOSI$c2 DRDS], $c1@line[5]
    $c1 SDDFDFH' !YEWD,$c2 )HDROD $c1@line[6]
    $c1 !KMDOCG &GSU|$c2\_GFHRGO' $c1@line[7]
    $c1 HKLSGP'$c2 __$c1\TKM0$c2\GHRBV)' $c1@line[8]
    $c1 JSNRVW'$c2 __+MNAEC$c1\IOI,$c2\BN'
    $c1 HELK['$c2 __,=OFFXCBGHC$c1\FD)
    $c1 ?KGHE $c2\_-#DASDFLSV='$c1 'EF
    $c1 'EHTI !H
    $c1 \`0F' '!
    \e[0m";
    if ( $distro =~ m/None/ ) {
    my $color = "\e[0;34m";
    foreach my $filled ( @line ) {
    print "$color $filled\n"
    if ( $distro =~ m/Debian/ ) {
    ## Get Debian version ##
    if ( $display =~ "OS"){
    print "\::$textcolor Finding Debian version\n" unless $quite == 1;
    my $version = `cat /etc/Debian_release`;
    $version =~ s/\s+/ /g;
    $version = " OS:$textcolor $version";
    unshift(@line, "$version");
    my $c1 = "\e[0;31m";
    print "
    $c1 _,met\$\$\$\$\$gg.
    $c1 ,g\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$P.
    $c1 ,g\$\$P\"\" \"\"\"Y\$\$.\". @line[0]
    $c1 ,\$\$P' \`\$\$\$. @line[1]
    $c1',\$\$P ,ggs. \`\$\$b: @line[2]
    $c1\`d\$\$' ,\$P\"' . \$\$\$ @line[3]
    $c1 \$\$P d\$' , \$\$P @line[4]
    $c1 \$\$: \$\$. - ,d\$\$' @line[5]
    $c1 \$\$\; Y\$b._ _,d\$P' @line[6]
    $c1 Y\$\$. \`.\`\"Y\$\$\$\$P\"' @line[7]
    $c1 \`\$\$b \"-.__ @line[8]
    $c1 \`Y\$\$
    $c1 \`Y\$\$.
    $c1 \`\$\$b.
    $c1 \`Y\$\$b.
    $c1 \`\"Y\$b._
    $c1 \`\"\"\"\"
    \e[0m";
    ## Run screen shot graper ##
    `$command` unless $shot != 0;
    I think that seems to be what you mean. Thanks for helping me.
    Regards

  • Looking for a PowerShell Script

    there is a way to add someone to the admin group, but this would require that you already have admin rights.

    You'll have to forgive me, Im a little green in powershell. I work at a school where I will be needing to give a few student admin rights temporarily on a per period basis. Is there a script that would be able to enable admin rights to that student just for a certain time period and then take it away? Thanks for your help in advance!
    This topic first appeared in the Spiceworks Community

  • I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    with an iphone 3G the most up to date ios is 4.2.1 so you have a problem because whatsapp requires a higher version.  If you saved an earlier version of whatsapp you could install that otherwise you cannot use the app.  You will need to get a more up to date phone

  • PS script which can search Personally Identifiable Information data in sharePoint site

    I would like to write a  PS script which can search for and report on Personally Identifiable Information like card numbers, etc in SharePoint site. I would like to find it in txt as well as xls word .
    Velu K

    Hi Velu,
    Based on your description, my understanding is that you want to get the needed user properties for all the users using PowerShell.
    I recommend to use the code below for getting the properties to txt file using PowerShell and you need to grant Full Control permission on the User Profile Service Application for the user who execute the commands:
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Server")
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Office.Server.UserProfiles")
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    #change the URL to your root site URL
    $site = new-object Microsoft.SharePoint.SPSite("http://sp");
    $ServiceContext = Get-SPServiceContext $site
    $ProfileManager = new-object Microsoft.Office.Server.UserProfiles.UserProfileManager($ServiceContext)
    $AllProfiles = $ProfileManager.GetEnumerator()
    #You need to create the text file called UserProfiles in C disk(you can change the name to be what you want and put it in the place where you want )
    $file = new-object System.IO.StreamWriter "C:\UserProfiles.txt";
    $file.Writeline("DisplayName|Accountname|workEmail");
    #get the user properties you want
    foreach ($profile in $AllProfiles) {
    $DisplayName = $profile.DisplayName
    $AccountName = $profile[[Microsoft.Office.Server.UserProfiles.PropertyConstants]::AccountName].Value
    $workEmail = $profile[[Microsoft.Office.Server.UserProfiles.PropertyConstants]::workEmail].Value
    $file.Writeline($DisplayName+"|"+$AccountName+"|"+$workEmail);
    $file.close();
    $site.Dispose()
    More references:
    http://social.technet.microsoft.com/wiki/contents/articles/19780.sharepoint-2010-export-user-profile-properties-to-a-text-file-using-powershell.aspx
    http://blogs.catapultsystems.com/rhutton/archive/2012/10/11/updating-a-user-profile-picture-using-powershell-exception-calling-quote-ctor-quote-with-quote-1-quote-argument.aspx
    Thanks,
    Victoria
    Forum 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 Subscriber Support, contact
    [email protected].
    Victoria Xia
    TechNet Community Support

  • Looking for form filling app that can do this

    I am looking for an iPad app that can do this. I know it would need some type of cloud/web based backend to setup and manage but I'm looking for the following:
    We are a fire and security company. Many jobs require multiple documents to be created such as a service ticket, alarm activity log and maybe another form. The problem is if the tech needs to fill out the service ticket and activity log, those forms require in many ways the same information such as description of problem and end results and then each form has it's own separate info required. Right now the tech either has to retype all the similar data or try to copy and paste between the different fillable PDF files.
    I'm looking for a solution that will allow me to select which forms are needed and then it will populate the required fields to fill in and when complete it will export it to PDF on the appropriate company document templates and allow signatures to be placed before printing via AirPrint and emailing it to customer and our office.
    Does anyone know of a solution like this? It is not an easy thing to look for on Google.

    To more easily find compatible apps:
    iOSSearch - search the iTunes store for compatible apps.
    Apple Club - filter apps by iOS version.
    Starting when iOS 7 was released, Apple now allows downloading the last compatible version of some apps (iOS 4.2.1 and later only)
    App Store: Downloading Older Versions of Apps on iOS - Apple Club
    App Store: Install the latest compatible version of an app
    You first have to download the non-compatible version on your computer. Then when you try to purchase the version on your iPod you will be offered a compatible version if one exists.

  • Looking for a reading App.  iPad (iOS 7.1.2) - Kindle.  I am looking for a good app that can help a college student with reading books that cannot be found on audio book. Voice over works, but monotone!

    Looking for a reading App.
    iPad (iOS 7.1.2) - Kindle.
    I am looking for a good app that can help a college student with reading books that cannot be found on audio book.  I have tried voice over and it works but it's very monotone and it really strings things together. 
    - I'm willing to pay for a good app but I can't seem to sort though the many that are out there. Any suggestions.

    Ah. I'm surprised, but there we go.
    Have a look here ...
    http://jam.hitsquad.com/vocal/about2136.html
    (courtesy of googling 'OSX free multitrack recording software')
    Didn't have time to do more than skim, but 'Ardour' looked promising. Protools is the only one I've used, the full product is one of the industry standards, but the free 'lite' version listed here seems to be limited to 2 in/out as well.
    Referring to your original post, I'd think trying to write or 'script' something would be a nightmare ... synchronisation of streams within something like Applescript would be a major issue, quite apart from anything else.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • I'm looking for a Jukebox app that can download songs I do not have, but my friends want to hear at a party. Any ideas?

    I'm looking for a Jukebox app that can download songs I do not have, but my friends want to hear at a party. Any ideas?

    Ah. I'm surprised, but there we go.
    Have a look here ...
    http://jam.hitsquad.com/vocal/about2136.html
    (courtesy of googling 'OSX free multitrack recording software')
    Didn't have time to do more than skim, but 'Ardour' looked promising. Protools is the only one I've used, the full product is one of the industry standards, but the free 'lite' version listed here seems to be limited to 2 in/out as well.
    Referring to your original post, I'd think trying to write or 'script' something would be a nightmare ... synchronisation of streams within something like Applescript would be a major issue, quite apart from anything else.
    G5 Dual 2.7, MacMini, iMac 700; P4/XP Desk & Lap.   Mac OS X (10.4.8)   mLan:01x/i88x; DP 5.1, Cubase SX3, NI Komplete, Melodyne.

  • Looking for a pdf reader which meets these requirements

    I am looking for a pdf reader which meets these requirements:
    1- Open pdf starting from last page opened during last session
    2- Be able to scroll between pages vertically (not horizontally like many current ones do). Vertical scroll should be a continuous smooth scroll without doing a sudden full page pull in. Should behave as if pdf is one single very long page.
    3- Should be able to change width of page and lock it. Page should not move sideways. Page width should be remembered so when same pdf is opened, it opens in that width.
    4- A fast scroll feature. Useful for pdf's with hundreds of pages.
    5- Nice to have feature: when opening the pdf reader, it automatically opens the last pdf file on the last page read.
    I have tried all the free pdf readers in the AppStore and none met all these requirements except for two which had these issues:
    1- iRead limitation: When screen is touched for more than a second, the page is frozen (locked) and page can't be scrolled. Scrolling is done when doing quick swipes only
    2- FileApp limitation: Does not remember last page opened. Does not remember last width set. Fast scroll doesn't work properly when width is other than default.

    iAnnotate additional points
    iAnnotate works with DropBox to download and upload edited PDFs. It does all the other same things, email, USB, and iTunes etc. but it also can download PDFs from any web site.
    You can transfer hundreds if not thousands of files at one whack using the AIJ Utility on your desktop.
    If you transfer a large number of files you have to plan not to use iAnnotate a while as it has an index function that indexes all the text into a master 'dictionary' so it can do searches for data and find PDFs for you. This indexing takes hours if you transfer hundreds of moderate size PDFs at one time.
    The biggest PDF I have feed it was a Gimp manual at close to a thousand pages.
    Remember the scratch pad ram is only 256 MB in the current iPad. You can cash iAnnotate if you do something really dumb with such a large file. Other applications also grab and hold onto chunks of this ram in the iPad so it is best to force a memory reset before doing anything that is going to max out that ram.
    iAnnotate allows you to have more than one PDF open at a time and you can tab between all the open PDFs in a blink just as you would in a tabbed web browser.
    If you zoom a page larger than the width of the screen it slides around. Less than the width of the screen the page locks in the size while scrolling which is smooth between pages.
    iAnnotate is a very well made product for dealing with PDFs. Annotations display in Goodreader and in the Mac OS Preview.

  • Im completely new to Mac. Im swapping my windows laptop for macbook pro and looking for network storage solution which the Time Capsule seems to do. Is it possible to use this as NAS for my desktop Windows PC - windows 7

    Im completely new to Mac. Im swapping my windows laptop for macbook pro and looking for network storage solution which the Time Capsule seems to do. Is it possible to use this as NAS for my desktop Windows PC - windows 7

    Broadly speaking I want some sort of network storage( wireless or through my existing wifi router) that I can access files for both my windows PC and Macbook and also to access files to my iPad/ iPhone. Some sort of backup and sychronisation so that I can access certain files remotely.
    Buy a real NAS.. synology or QNAP are the standard... although companies like Netgear and Western Digital and Seagate make them as well.
    There is no problem sharing between Mac and PC now.. you do not even need a NAS to do that.. you simply share the hard disk directly. Mac talk SMB.. everything talks SMB nowadays.. so it is easy.
    ipad and iphone are not designed to use NAS.. they are designed to backup only to the cloud or itunes.. but you can load an app like file browser if you want.
    http://www.stratospherix.com/products/filebrowser/
    Remote access to the Apple TC is somewhere between difficult, to impossible from a PC.. Apple use BTMM and iCloud but the service is not offered to PC.
    A real NAS will offer HTTPS or SFTP or several other methods.. that both Mac and PC can use.
    You simply plug it into the current wireless router.. it is a network device and assessable over the network. It is not necessary to buy another router.. in fact that is a waste.

  • Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    Can anyone help on integrating Unifier with WebCenter Portal ? We are looking for a solution where we can show Unifier pages within WebCenter Portal application. Is this possible ?

    If you simply would have posted here first, there are plenty of people who would have informed you of the current policy to have a data plan active on an account during the entire contract if purchasing a discounted smartphone.
    Unfortunately, there are just as many on here who would claim the people informing you about this policy of being Verizon plants spreading disinformation and trying to make people afraid to upgrade via this route.
    Yes this is a new policy, one which has been pointed out multiple times in these forums.  Good luck, but I doubt you will have an outcome over this which will make you happy.
    Verizon is closing as many loopholes to keep unlimited data as they can.

  • I desperately to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in in library but the folder is empty. Can anybody help me?

    I desperately need to uninstall adobe reader from my Mac book air. I sent adobe reader to trash and afterwards look for internet plugs in  library but this folder is empty in my library. Can anybody help me?

    I looked for plugs in in my library but the folder internet plugs in is empty

Maybe you are looking for

  • LIS Credit Memo

    In MCSI we have our own customized info structure S991.In the present system, Credit Memo values are getting updated in Gross Credit Memo column. Our client wants the Credit Memo value to be updated in Gross Inv sales Column. In Gross invoice column

  • Will Actionscript 2.0 remain supported?

    I know Actionscript 3.0 is the new standard for Flash CS5. However, my work is largely concentrated in Photography and 3D Modeling. However I also must use Flash for a lot of my work, but do not really have the time to learn AS 3.0. Will I be able to

  • Can't create BT email account

    Hello I switched to BT (unlimited Infinity1) two days ago, and although the broadband works fine, I've been unable to set up a BT email account. In the My Extras section of My BT the BTMail panel is marked "Inclusive" with a "Get Started" link at the

  • Data Link Layer

    Hi, I am bit confused in Data Link Layer. When a sender machine send a data to Reciever machine then it starts from App--Pres--Sess--Transp---Network---Data??? I have understood all upper 5 layer function but in the Network layer the packet has infor

  • BI relevant Data Copy (R/3 Productive -- R/3 Development)

    Hello, I am loading data from R/3 --> BI 7.0 I have only 2 systems namely, Development System and Productive System. I would like to have a copy of the recent data available on my R/3 Productive System on my R/3 Development System. This I wish to do