Having multiple problems with script - NTFS Permissions and AD Groups

Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
is used differently later on in the script.
4.  Verifies the entered information and requests confirmation to proceed.
5.  Creates the folder.
6.  Creates an AD OU and/or security group(s).
7.  Applies appropriate security groups to the new folder and removes undesired permissions.
Import-Module ActiveDirectory
$Division = ""
$DivAbbr = ""
$OU = ""
$OUDrive = "AD:\"
$FolderName = ""
$OUName = ""
$GroupName = ""
$OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
$FSRoot = "E:\"
$FolderPath = ""
$DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
[bool]$Location = 0
do {
$userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
Switch ($userInput)
W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
S {"Staffing is not yet implemented."; break}
P {"Packaging is not yet implemented."; break}
default {"Invalid choice. Please re-enter."; break}
while ($DivAbbr -eq "")
write-host ""
write-host ($Division + " was selected.")
$FolderPath = $Division + "\"
write-host ""
$choice = ""
do {
$choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
Switch ($choice)
G {$Location = $false; break}
L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
default {"Invalid choice. Please re-enter."; $choice = ""; break}
while ($choice -eq "")
write-host ""
write-host ("Location is set to: " + $Location)
write-host ""
if ($Location -eq $false) {
$FolderName = Read-Host "Please enter folder name:"
$GroupName = $DivAbbr + " " + $FolderName
} else {
$input = Read-Host "Please enter two-letter state abbreviation:"
$FolderName = $FolderName + $input + " "
$input = Read-Host "Please enter city:"
$FolderName = $FolderName + $input + " "
$input = Read-Host "Please enter street address number only:"
$FolderName = $FolderName + $input
$GroupName = $DivAbbr + " " + $FolderName
$FolderName = $FolderName + " "
$input = Read-Host "Please enter street name:"
$FolderName = $FolderName + $input
$input = Read-Host "Please enter any optional information to appear in folder name:"
if ($input -ne "") {
$FolderName = $FolderName + " " + $input
$OUName = $FolderName
write-host
write-host "Path for folder: "$FSRoot$FolderPath$FolderName
write-host "AD Path: "$OUDrive$OU$OURoot
write-host "New OU Name: "$OUName
write-host -NoNewLine "New Security Group names: "$GroupName
if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
write-host
$input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
if ($input -ne "Y") { Exit }
write-host
write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
Write-Host "Folder already exists! Skipping folder creation..."
} else {
write-host "Folder does not exist. Creating..."
new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
Set-Location ($FSRoot + $FolderPath + $FolderName)
if ($Location -eq $true) {
$tempOUName = "ou=" + $OUName + ","
write-host
write-host $OUDrive$tempOUName$OU$OURoot
write-host
write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
Write-Host "OU already exists! Skipping OU creation..."
} else {
write-host "OU does not exist. Creating..."
New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
$GroupNameMGMT = $GroupName + " MGMT"
if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
$FolderACL.SetAccessRuleProtection($True,$True)
# $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
$BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
$BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
write-host $BIUsersSID.Value
# out-string -inputObject $BIUsers
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
$FolderACL.RemoveAccessRuleAll($Ar)
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
get-acl ($FSRoot + $FolderPath + $FolderName) | fl
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
$ADGroupName = "JACOBSON\" + $GroupName
$objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
$objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
write-host $ADGroupName
write-host $objUser.Value
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
Out-String -InputObject $ar
$FolderACL.AddAccessRule($Ar)
$ADGroupName = "JACOBSON\" + $GroupNameMGMT
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
Out-String -InputObject $ar
$FolderACL.AddAccessRule($Ar)
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
} else {
$tempOUName = "cn=" + $GroupName + ","
write-host
write-host $OUDrive$tempOUName$OU$OURoot
write-host
write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
Write-Host "Security group already exists! Skipping new security group creation..."
} else {
write-host "Security group does not exist. Creating..."
New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
$ADGroupName = "JACOBSON\" + $GroupName
$FolderACL.SetAccessRuleProtection($True,$True)
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
$FolderACL.AddAccessRule($Ar)
$FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
into Powershell, they work as expected.  I've tried the following methods:
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
$FolderACL.SetAccessRuleProtection($True,$True)
$FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
$FolderACL.SetAccessRuleProtection($True,$True)
$BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
$BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
$FolderACL.RemoveAccessRuleAll($Ar)
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
In the second case, I get the following error message:
Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
+     $FolderACL.RemoveAccessRuleAll($Ar)
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : IdentityNotMappedException
This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
also tried the solutions given in this thread:
http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
Thanks!

I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
again utilizing the -Server parameter on the Get-ADGroup command:
get-acl ($FSRoot + $FolderPath + $FolderName) | fl
$FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
# Add the new normal users group to the folder with Read and Execute permissions
$GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
$SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
$FolderACL.AddAccessRule($Ar)
# Add the management users group to the folder with Modify permissions
$GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
$SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
$Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
$FolderACL.AddAccessRule($Ar)
Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
Still having issues with the translation of the BUILTIN\Users group, though. 

Similar Messages

  • My ipod touch will not switch on and is no longer recognised by itunes.  Before this i tried to restore it as I was having some problems with it switching off and on by itself randomly.

    My ipod touch will not switch on and is no longer recognized by itunes.  Before this i tried to restore it as I was having some problems with it switching off and on by itself randomly.
    I tried to restore it and I got error code 2009, so I closed it tried again got error code 1659, now it wont do anything and it's not recognized by my pc /itunes please help x

    For the restore error messages try:
    iTunes: Specific update-and-restore error messages and advanced troubleshooting

  • I'm having a problem with the application Dropbox and I want to uninstall it. In finder it does not allow me to move it to trash telling me the dopbox application is open. How do I close it? when it shows up nowhere as an open application?

    I'm having a problem with the application Dropbox and I want to uninstall it. In finder it does not allow me to move it to trash telling me the dopbox application is open. How do I close it? when it shows up nowhere as an open application?

    Is there a DropBox icon up in the menubar you can click on & see quit DropBox?
    https://www.dropbox.com/help/41

  • Multiple Problems with PDF InDesign, Bridge, and Acrobat Reader

    I create proof books with a blend of Adobe Bridge & InDesign.
    Here is my work flow: I will BOLD the errors I am having and need help with.
    Step 1.) I create contact sheets in Bridge and save them as PDF's
    Problem with Bridge ( I have another posting for this thread as well under Bridge) I cannot save PDF's larger than 400ish photos at 300ppi (important for my printer) without it saving as a blank PDF. COMPLETELY EMTPY! So I have to split up my photos into groups of 400 or less photos then patch them back together.
    Problem with Acrobat: If I patch those PDF’s back together with Adobe Acrobat (a suggestion from another person on here) they save great but I get an error when I try to import them in indesign. The error reading: ERROR. Cannot determine page count.
    Please open the PDF file in Acrobat, do a “Save As…” and try again. (99)
    Step 2.) I use a script (MultiPageImporter2.2.1.jsx) to import the PDF's into Indesign. (if saved as one pdf in acrobat I get the above error)
    Problem With InDesign: I run this importer script in InDesign to create my books with a template I use from my printers. Well since I have to import multiple pdf with multiple pages ( because I can’t piece them together without the above error. Then I have this problem:
    I place a pdf with 1-226 pages in. I start this on page 1.
    I place the next pdf with 1-141 pages in. I start this on page 227.
    An error pops up that says I MUST start my import on page 226!!!!!!!!!! I don’t want to import on page 226 because I have two photos on that page!
    I tried it several ways and no matter what I loose my last page of my first import.
    PLEASE someone help me! I feel like I might be doing something really silly but I’ve spent 7.5 hours today working on this books with error after error.
    I have done all the updates on my computers and nothing works. I use two macs and both have the same errors. I have a mac-book Pro | snow leopard and a Imac | snow leopard.
    Thanks much!

    All your problems seem to stem from the PDFs that you are making from Bridge.  What you are describing should be perfectly possible, but the fact that Bridge doesn't want to make a PDF with more than 400 photos and it all goes downhill from there makes me suspect Bridge.
    Here's a plugin that may help?  Looks pretty cheap for what it does.
    Apart from that I'd try to clean up the PDFs that Bridge is producing if Indesign doesn't like them.  One way would be to print to a new PDF, after you've combined them as necessary.
    As to the last pronlem you mention, where it forces you to place on page 226, have you tried creating a blank page 227 first, before you try placing?

  • I'm having multiple problems with my MacBook Pro, HELP!

    I'm having quite a few problems with my macbook, such as:
    -when I click on something from the dock it opens up the applications folder
    -my keyboard is acting strange, when on safari the buttons act like shortcuts eg while typing it highlight file or edit print options come up or bookmarks
    -when I click on a link on safari it opens up in a new tab
    Please help, much appreciated
    Charles

    . Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    Then restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983

  • I am having multiple problems with my iphone 4s, people can't hear me when I call, text messages don't always send, calls go straight to voice mail. I have all bars, have hard rest 3 times. I have called apple 4 times and gone to a store. No help.

    I have had the 3g, 3gs, 4 and little if any problems. I made a major mistake buying the 4s. What a horrible phone. I must say, apple service is at best, BAD. Here are the basics. I am on the same network, I call the same people, I use the same text messages as I did with the 4. With the 4s, I will call someone and they will not be able to hear me. I have to hang up and recall. Or the phone just does nothing when I press call. Text messages acts like they send but when I go back the have been sent. Sometimes the calls go direct to voice mail.
    Here's what I have done. Reset, did not help. Called apple, advisor said she would call me back in 5 minutes, after waiting for 5 days for the call, I recalled, they walked me through the same things I had already done, then said to take it to a store. So they set up an appointment for the only day I could get to it, 1 1/2 hours away, on my grand son's birthday. That was okay if they fixed it. So they hard reset it, we had to setup 4 email accounts, they would not allow me to restore because they said it was a software problem. So I had to download all the apps, lost a lot of data. No fun. But if it worked! So Monday back at work, guess what, same thing. When home and did another hard reset. Still no lick. Called apple again. They said they would replace my phone, all they needed was to put a hold on a credit card for $899 or drive a 1 1/2 hours to a store.
    So anyone know a good andriod phone.
    PS I got a email asking about the service each time and each time I told them what a horrible phone it was and how bad service was. I have yet to hear back. I guess they do not read them!

    You're not speaking to Apple on in this forum, nor will someone from Apple see this post.   We are just users like you and I.
    Have you tried to restore or reset your phone?
    Or contact your carrier in re: to your sim card

  • =( Having a problem with error codes (-1202) and (-9808)

    Everytime i have iTunes open and then click on iTunes store, i try and go to my account or purchase a song and it DOES NOT let me!!!! it just keeps saying error cose (-1202) when i try to go to manage my account and whenever i try buying a song it says
    "We could not complete your iTunes Store request. An unknown error occured (-9808). There was an error in the iTunes Store. Please try again later"
    but i have tried again later it's been saying this for like a month.
    I feel helpless cause it won't even let me manage my account lol. Can anybody help with this? or if you have any ideas please let me know thanks

    We have never tried before today, but we are having the exact same problem - all morning. Windows XP Pro SP3, Internet connection is not using a proxy server so far as I can tell (standard Verizon FIOS connection).

  • I'm having multiple problems with Lion.  Please help!

    I downloaded Lion on the first day or release and it has been a very frustrating experience.  Today,  I reinstalled Lion hoping a fresh install would fix my woes but the problems persist. I'm in desperate need of advice and would appreciate any help from the gurus out there!
    I have a 24" iMac with the following specs:
    Problem 1)  Ever since I installed Lion Safari is a nighmare.  Roughly 30% of any given website loads.  Below is a screenshot of www.apple.com:
    Problem 2)  No matter how many times I uncheck "restore windows after closing application" my mac opens EVERY window that was open previously. For example, I do a lot of graphics work and use Preview as my image medium.  Every time I open Preview 100 + images load unless I go through each one of them individually and close each window.  *****. 
    Supposed solution: 
    What Preview looks like each time I open the app:  100+ Images
    Problem 3)  Even with 4 gigs of ram my Ram is constantly ran into the ground ever since the upgrade and my computers performance is in the gutter.  I have to constantly use "MemoryFreer" to free ram which is sometimes down to 14 MB free out of 4 Gigs.
    PLEASE HELP!  Thank you!
    Justin

    RáNdÓm GéÉzÁ wrote:
    Whether the line is old and tired or not, people are free to express their woes along with trying to find a fix.
    TBH, Lion is a bit of let down, regardless fo whether there are issues present or not on your particular setup/system etc.
    If a clean install has not fixed the issues above, I would be tempted to appraoch a Genius Bar and show them the problems. This may be faulty RAM and something that needs to be demonstrated, before a fix or repair can be considered.
    Best of luck.
    Yes you are correct, and as the OP did, questions are asked and other users try to answer. As for the poster I answered, he did not ask a question, but expressed extreme disappointment which he is entitled to do, therefore I suggested he have a read through some of the other threads to perhaps address whatever issues he is having. As you say it could be faulty RAM or a bad installation, or a hundred things inbetween. That is why you need to hunt down similar symptoms to narrow it down. Or if you are under warranty, let the Apple Store fix it.
    Good Luck

  • Suddenly having multiple problems with new iTunes

    So my iTunes is all messed up and I don't know why.
    I recently was given a new PC from my parents, and one of the first things I did was to import my old music library (about 12000 songs on an external hard drive.) When I added the files I kept receiving an error saying that iTunes could not save the library and, sure enough, the next time I opened iTunes there was nothing there. I uninstalled and reinstalled the latest version of itunes in case that was the problem, and after that I couldn't even get it to open, it would always give me a message saying that required files were missing. I have since uninstalled and reinstalled about 5 more times and had no luck.
    Most recently i decided to just plug in my iPod and see if my pc would recognize what files were missing on its own. Strangely enough, iTunes opened. Unfortunately it still is unable to save my library. It also says that it cannot read the files on my iPod and that I need to restore its settings, but I would hate to erase it (its a full 160G Classic) just to have itunes be unable to put any files back on it.
    If anyone has any idea what is wrong I would greatly appreciate the feedback.

    I should add that as of this morning iTunes appears to opening fine and reading my iPod (which is inexplicable because I haven't done anything with it since my 1st post.) iTunes still, however, will not save my library. I keep getting error message {-1450}. Also, every time i open iTunes, I am asked to agree to the user agreement, as if i had just downloaded the program.

  • Having a problem with itunes backing up and syncing with iphone 4s??

    every time i plug iphone 4s into itunes the backup process stops at step two any ideas folks??

    Try the following user tip:
    "Invalid drive X:\" install errors

  • Multiple Problems with Toshiba Satellite A505-S6980 laptop??

    Hi,
    We purchased the Toshiba Satellite A505-S6980 laptop at Best Buy about a week ago.  However, we seem to be having multiple problems with it, that I wouldn't have expected from a brand new Toshiba. 
    Problems:
    Whenever I'm in Mozilla Firefox browser, it crashes 90% of the time.  Firefox was always my favorite on our previous computer, and still is, I just can't use it because it continually crashes. 
    In Outlook, whenever I try to open a message or reply, or basically any general command, it pops up an error message that says, "Could not install the custom actions," and then does whatever I'd wanted it too.  It's a pain, as we do a lot of email and calendar through Outlook.
    In Outlook, when I tried to import our Contacts, it says that we do not have the appropriate permissions to access the files.  We are the only user account on this computer.  We don't do seperate ones for each family member; we just turn on the PC.
    It seems to me like the internet crawls on this computer.  Every time we try to play a video (e.g. ABC, CNN, Youtube), it won't buffer.  It just stops and starts all throughout the video about every 3 seconds.  HUGE nuisance.  We watch a lot of videos. 
    Minor issue:  In Firefox, before it has crashed that is, on my old computer I used to be able to type "cnet" without the quotes into the address bar, and it would take me to www.cnet.com.  If it couldn't find the page, it would take me to my default search engine's page (Yahoo) with the search results.  On this one, if I type anything into the address bar (like search terms/keywords) it bring up search results with a My Start Incredimail search engine.  I want my Yahoo search engine, and I want it to find the page if it can. 
    I cannot seem to get the Aero Flick (I think) to work.  That was one of the main things I was looking forward to, but I can't figure out how to do it.
    It seems to me like the Windows Explorer freezes a lot.
    There have been multiple times when I'm typing that the keys don't work.  Like I would have to press the A key about 10 times to get it to show up on the screen once.  It's hit and miss and doesn't do it all of the time.
    This isn't a problem - just a question.  Is it best to leave the computer plugged in all of the time if it's stationary?  Or once it's fully charged, should I unplug it and let the power run down, and then re-charge it?
    **CLARIFICATION:  It's not Outlook Express, it's Microsoft Office Outlook 2007.  The one that you have to pay for.  Surely it works with 7, considering it's Microsoft?!?!
    If you can help me answer any of these problems/questions, I would really appreciate it.
    Have a safe and Merry Christmas!

    Yes, everything was fine with Firefox.  However, I have uninstalled it, and am just using Internet Explorer for now.
    Thanks for battery info...
    I'm well within the return window, but overall really like the laptop.  I've put a lot of time into it, and just want it to work right if possible.
    Thanks for the info.
    ScottinFla wrote:Concerning Firefox, have you checked your add-on list for any faulty plug-ins or extensions? Try disabling them and see what happens. Also, that search engine you mentioned may have somehow been installed on your machine. Have you checked the "Manage search engines..." window available from the search bar? Check your add-ons as well. You could always reinstall Firefox from scratch.
    As for the battery, it may not be best to continually run down the battery - followed by a long charge. Once a month or so should be fine. Otherwise, just try to give the battery some exercise every now and then.
    Are you still within the return window? Your unit may have a bad install, some bad RAM, or...
    I have the same model and it works just fine.

  • Problems with Apple ProRes 4444 and alpha channels in Motion 4 after upgrade to Snow Leopard.  Has anyone seen this?

    We've just now upgraded from Leopard to Snow Leopard and are having a problem with Apple ProRes 4444 and alpha channels in Motion 4.  A clip with an alpha which keyed perfectly before the upgrade, now will not key.  If I convert the clip to the Animation codec, it keys perfectly.  If I export the Motion project as a ProRes 4444 self contained movie, it will key when brought into FCP 7 but if I import the project into FCP 7, it will show the key in the viewer but not the canvas.  Has anyone seen this or have any suggestions on how to correct this?  Is it a bug? 
    Thanks,

    Motion 4.0.3
    It just doesn't seem to recognize the alpha at all. 

  • I'm having a problem with downloading multiple app updates and moving songs between iTunes and my external hard drive.

    I'm having two problems with iTunes, but I'm not sure if they're related issues. First, when I try to click "Download All Updates" for apps, only one update will download and I will get successive error messages for all of the other updates. However, if I click update for each individual app, they download fine. Why am I not able to download all app updates simultaneously now.
    My second issue is that I cannot move songs from iTunes to my external hard drive or vice versa. When I drag the files, the blue plus sign appears, but the file does not appear where I moved it to.
    Both issues have been occuring for about month. Any help would be greatly appreciated.

    While downloading select Downloads in the left-hand column and make sure Allow Simultaneous Downloads is unchecked. This seems to help with partial downloads...
    The other issue doesn't ring any bells.
    tt2

  • I'm having a problem with coreaudiotoolbox and corevideo.dll.

    I'm having a problem with coreaudiotoolbox and corevideo.dll. PC was corrupted, I restored. Now when I launch Safari, I run into errors, can't find these two dll files. Itunes won't download at all because it says something is missing but won't say what. Now what do I do? Apple won't help because they want $50 dollars just to talk with me and I've been down that road before and to no satisfaction. Help please!!

    Taken at face value, you're having trouble with Apple Application Support program files there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept, so an AAS problem can affect both iTunes and Safari.)
    Let's try something relatively simple first. Restart the PC. Now head into your Add or Remove programs control panel, select "Apple Application Support", click "Change" and then click Repair.
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post (although it's for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things):
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a window pops up saying that the prograam has encountered a problem and sh...

  • I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did).

    I recently upgraded to Lion, and immediately started having consistent problems with Open Office 12 (would hang, and need a Force quit to recover). Has anybody else seen these problems? Any solutions other than going back to Snow Leopard? (I did). But I'd like to use iCloud with iPad.

    Hi Pete. The repair of disk permissions can help resolve  any application crashing or misbehaving.
    As for Lion and the two camps, I think that is a reasonable observation. In my office we have about a dozen Mac's and about one third of those Mac's had problems after updating from 10.6 to 10.7. The main problem for these Mac's was a loss of wifi stability. But for the other two-thirds, Lion was a smooth transition.
    Personally, my Lion experience was fine. But I did get a new i7 MacBook Pro with Lion already installed and only had to migrate my user data from a 10.6.8 TM backup.
    So I think that is a key for Lion's operational success. A clean install of Lion on a new Mac would not cause too many operational issues. But an installation, or more correctly, an update to Lion from SL increased the chances of failure for some users - especially when old software & plugins resided on the Mac. And I would say that they were the people that you saw at the Apple store.
    As for the "latest release of Lion fixed my problems" statement, my experience with these and other forums is that people mostly only go there to complain about the problems they are having. If they are having no problems then they either keep it to themselves or they try to help the users who are experiencing trouble...

Maybe you are looking for

  • Error when opening the HFR reports in Studio

    Hi when i am trying to open HFR reports I am getting the Error as '' component 'threed32.ocx' or one of its dependencies not correctly registered:a file is missing or invalid." please help me regarding this. thanks in advance.

  • How do share a very large file?

    How do share a very large file?

  • LMS 4.2.3: Failed to fetch vlan.dat

    Hello We are running LMS 4.2.3 on a softappliance. Config fetch works fine. Protocol order is ssh and scp. VLAN fetch we configured the protocol order to SCP and TFTP. When trying sync archive i see the follwing error message:                     Sta

  • Does PS CC have "ease in" and "ease out" feature for motion?

    I'm trying to learn about the video timeline in CC and expect to see an "ease in" and "ease out" feature? Is it hidden somewhere? Where can I find some in-depth tutorials on video animation in Photoshop CC? Thanks, Ray

  • Security Problem while porting to 7.0

    Hi, We are running on 5.1, jdk1.2.2_07, sp12 and tried porting 7.0. We found the following problem below after converting the weblogic.properties file to config.xml. Starting WebLogic Server... <Jul 19, 2002 7:11:14 PM PDT> <Notice> <Management> <140