Module Function Name Resolution - Issues with DefaultCommandPrefix

Just getting started on module development, running PS4, and I've run into an... inconsistency... that I'm trying to understand. I've got two test functions, Get-Something and Set-Something in a script module. In my manifest file I specify a DefaultCommandPrefix
of 'Test'.
My issue is the function name resolution doesn't result in an executable result if you leave PowerShell up to it's own process.
To begin with I closed all sessions and deleted all files in the CommandAnalysis directory. After starting a session I waited for the CommandAnalysis cache to populate. Then I ran a series of test commands to illustrate how, most of the time, the function
name PowerShell registers with tab completion can't be executed because it lacks the 'Test' prefix. Even worse, much of the time tab completion won't recognize the correct (i.e., with prefix) name of the function and honor tab completion for it.
Having just learned of the CommandAnalysis cache I assumed I would see it change as PowerShell 'learned' more about the module because the name resolves differently over time. I've included three files at the end of this post, the module code (ModuleTest.psm1),
the manifest (ModuleTest.psd1) and the capture of output to the PowerShell session (ModuleTest.txt). I've tried to include the times I used <tab> and <ret> for tab completion and execution as well as (comments in parenthesis for things I did like
starting a new session and checking the CommandAnalysis cache for changes).
An example is, when first starting a session typing 'get-som<tab>' will resolve to 'Get-Something' (prefix 'Test' missing) and typing 'get-test<tab>' won't resolve to 'Get-TestSomething'. Try to execute the 'Get-Something' from tab completion
and you'll get the 'name not recognized, blah, blah'.
Now if you type 'get-som<tab>' PowerShell will resolve to 'ModuleTest\Get-Something' - looks promising... but no.  Try to execute the 'ModuleTest\Get-Something' from tab completion and you'll still get the 'name not recognized, blah, blah'.
Even though the same key strokes resolved differently there were no changes made to the CommandAnalysis cache so I'm lost on why it produces two different (though equally useless) results.
Manually importing the module and sometimes running Get-Command -Module ModuleTest will make tab completion of the function names behave correctly. Is this a known issue with using DefaultCommandPrefix in script modules or is there something I need to include
in the manifest to enforce strict name recognition (including the prefix)?
<ModuleTest.psm1>
function Get-Something
 Write-Host "Get-Something Executed"
function Set-Something
 Write-Host "Set-Something Executed"
<ModuleTest.psd1>
# Script module or binary module file associated with this manifest
ModuleToProcess = 'ModuleTest.psm1'
# Version number of this module.
ModuleVersion = '1.0.0.0'
# ID used to uniquely identify this module
GUID = '241877ff-64be-40c8-a603-8d5acf7a48d8'
# Author of this module
Author = 'wb3'
# Company or vendor of this module
CompanyName = ''
# Copyright statement for this module
Copyright = '(c) 2015. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Module description'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '2.0'
# Name of the Windows PowerShell host required by this module
PowerShellHostName = ''
# Minimum version of the Windows PowerShell host required by this module
PowerShellHostVersion = ''
# Minimum version of the .NET Framework required by this module
DotNetFrameworkVersion = '2.0'
# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '2.0.50727'
# Processor architecture (None, X86, Amd64, IA64) required by this module
ProcessorArchitecture = 'None'
# Modules that must be imported into the global environment prior to importing
# this module
RequiredModules = @()
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @()
# Script files (.ps1) that are run in the caller's environment prior to
# importing this module
ScriptsToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @()
# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @()
# Modules to import as nested modules of the module specified in
# ModuleToProcess
NestedModules = @()
# Default command prefix
DefaultCommandPrefix = 'Test'
# Functions to export from this module
FunctionsToExport = '*'
# Cmdlets to export from this module
CmdletsToExport = '*'
# Variables to export from this module
VariablesToExport = '*'
# Aliases to export from this module
AliasesToExport = '*'
# List of all modules packaged with this module
ModuleList = @()
# List of all files packaged with this module
FileList = @()
# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
<ModuleTest.output>
PS C:\Scripts\PowerShell> Get-ChildItem -Path 'C:\Program Files\WindowsPowerShell\Modules' -Recurse<ret>
    Directory: C:\Program Files\WindowsPowerShell\Modules
Mode                LastWriteTime     Length Name
d----          3/5/2015   9:06 AM            ModuleTest
    Directory: C:\Program Files\WindowsPowerShell\Modules\ModuleTest
Mode                LastWriteTime     Length Name
-a---          3/5/2015   8:50 AM       2907 ModuleTest.psd1
-a---          3/5/2015   9:01 AM        140 ModuleTest.psm1
PS C:\Scripts\PowerShell> Get-Module -ListAvailable<ret>
    Directory: C:\Program Files\WindowsPowerShell\Modules
ModuleType Version    Name                                ExportedCommands
Script     1.0.0.0    ModuleTest                          {Get-Something, Set-Something}
PS C:\Scripts\PowerShell> get-som<tab>
PS C:\Scripts\PowerShell> Get-Something<ret>
Get-Something : The term 'Get-Something' 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.
At line:1 char:1
+ Get-Something
+ ~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-Something:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-som<tab>
PS C:\Scripts\PowerShell> ModuleTest\Get-Something<ret>
ModuleTest\Get-Something : The term 'ModuleTest\Get-Something' 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.
At line:1 char:1
+ ModuleTest\Get-Something
+ ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (ModuleTest\Get-Something:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-tes<tab>
PS C:\Scripts\PowerShell> Get-TestSomething<ret>
Get-Something Executed
(New Session)
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-tes<tab><ret>
get-tes : The term 'get-tes' 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.
At line:1 char:1
+ get-tes
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
PS C:\Scripts\PowerShell> Import-Module ModuleTest<ret>
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-tes<tab><ret>
PS C:\Scripts\PowerShell> Get-TestSomething
Get-Something Executed
(New Session)
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-tes<tab><ret>
get-tes : The term 'get-tes' 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.
At line:1 char:1
+ get-tes
+ ~~~~~~~
    + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
PS C:\Scripts\PowerShell> Get-Command -Module ModuleTest<ret>
CommandType     Name                                              
ModuleName
Function        Get-TestSomething                                 
ModuleTest
Function        Set-TestSomething                                 
ModuleTest
(No change in CommandAnalysis cache)
PS C:\Scripts\PowerShell> get-tes<tab>
PS C:\Scripts\PowerShell> Get-TestSomething<ret>
Get-Something Executed
PS C:\Scripts\PowerShell> moduletest\get<tab><ret>
PS C:\Scripts\PowerShell> Get-TestSomething<ret>
Get-Something Executed
William Busby, PMP

Hi William,
yes, that's something you'll either have to do the hard way or live with admin confusion.
If you're using Sapien's PowerShell Studio as an Editor (hint: Usually a great idea), you can very easily rename a function, even in a multi-file module project, by rightcklicking on the function-name and selecting "rename".
Alternatively you can do a bulk rename with Powershell:
Get all functions in your module (Load it and check exportedcommands)
loop over each function-name
calculate new name
search your entire project for all references and replace them.
Let me see ...
function Rename-ModulePrefix
[CmdletBinding()]
Param (
[Parameter(Position = 0, Mandatory = $true)]
[string]
$ModuleName,
[Parameter(Position = 1, Mandatory = $true)]
[string]
$OldPrefix,
[Parameter(Position = 2, Mandatory = $true)]
[string]
$NewPrefix,
[Parameter(Position = 3)]
[string]
$Path
# Catch all typos
Import-Module $ModuleName -ErrorAction 'Stop'
# Get root path if not manually passed
if (-not $PSBoundParameters["Path"])
$Path = (Get-Module $ModuleName).Path
# Get module files
$Files = Get-ChildItem -Path $path -Recurse -Include "*.ps1", "*.psm1", "*.psd1"
# Iterate over each file
foreach ($file in $Files)
# Null variable in case you get an empty file somewhere and run this from Win 7
$data = $null
# Get Content of file
$data = Get-Content $file
# Replace strings
foreach ($c in (Get-Module $ModuleName).ExportedCommands)
$newName = $c.Name -replace $OldPrefix, $NewPrefix
$data = $data | ForEach-Object { $_ -replace $c.Name, $newName }
# Write back to file
$data | Set-Content $file
While I didn't proof it, in theory this should do it (Make a backup before running it :) ).
Cheers,
Fred
There's no place like 127.0.0.1

Similar Messages

  • Serious resolution issues with After Effects CC (2014) on Windows 8.1 Pro on Dell Precision M3800 laptop??

    My new company installed Adobe Creative Cloud (There was some annoying Proxy issues at first, because of the seriously tight I.T policies) but we are having some serious resolution issues with After Effects CC 2014 (also have this resolution problem with Adobe Premiere, Media Encoder, Muse) on Windows 8.1 Pro on a Dell Precision M3800 laptop with icons and interface looking too small and hard to see, is there a fix, an update or a work around, can anyone help?
    Any help will be appreciated!
    k.regards
    Ramon

    Hi Todd is there a time-frame for this fix, there is a lot of pressure on me, because I convinced my company to get the Creative Cloud and quite a lot of the CC software is not compatible with the latest Windows 8.1 OS.
    Is there at least a work around, until this big fix comes along?
    k.regards
    Ramon

  • Whitespace in User Account Name causes issues with various functions

    I've run into a few issues with users who have whitespace in their account names (for example, a user account name that was: "Joe Smith"). Generally, I think this is a result of windows interpreting the last name as a parameter when it tries to
    run a certain function. One place where this occurs and is easily replicated is in the "Troubleshoot Program Compatibility Wizard" which gives an error about permissions, another place this occurs is in the dx9 web installer which gives an error
    message concerning advpack.dll
    In both of these cases I've been able to 'fix' the issue by relocating the TEMP and TMP environment variables to a folder like C:\TEMP, however I still have some issues with other installers and programs such as the 3rd party Cordova build program and the
    android sdk which both get stumped by spaces in the user account name. From my understanding there is no way to change a user account name (not just the name which displays but the name which Windows reads) without deleting the account and copying often several
    gigabytes of files and settings over to a completely new account. Is this correct? Is there a way to remove the whitespace from an account name without these hackish workarounds? Is there anyway to report this as a bug to Microsoft in the hopes that they either
    remove support for usernames with whitespaces or come up with some way to make their internal features like the Compatibility Wizard operate correctly in these (fairly common) install environments? It's an incredibly pesky bug to identify....

    1. Spaces are allowed but not recommended. I would avoid using space(s) in account names.
    2. I do not understand what you have prevented from changing user name.
    3. For problems with 3rd pty programs ask support/forum of respective software vendors.
    4. If you feel like addressing Microsoft, use
    http://support.microsoft.com/contactus/?ln=en-us
    Regards
    Milos

  • Connecting from a remote computer / name resolution issues

    My work has two SQL Server 2005 databases, one installed on a Windows XP machine (running some equipment) and one installed on a Windows 7 machine (backing up the files from the XP instance).  Both computers run only the default instance.  I had
    replication set up and functioning (data being created on the XP maching was being replicated to the Win 7 machine) for the last three weeks in July.  I recently noticed that the replication is no longer working (the files were no longer being copied),
    and when I tried to check the status I got an error about named pipes, or, if I disabled named pipes "tcp provider error 0 no such host is known".
    At the time I found the replication problem, I could connect to both databases through SSMS on the Windows 7 machine.  On the XP machine, I could use SSMS to browse to the Win 7 instance but SSMS would not connect to the Win 7 instance by name (same
    errors about no such host known); the connection does go through by IP address.  I can ping from the Win 7 machine to the XP machine both by IP address and by name.  I could ping from the XP machine to the Win 7 machine by IP address but NOT by name.
    I tried running the workgroup wizard on the XP machine, thinking this might help with the name resolution problem.  In the wizard, I changed the workgroup name to a new name.  I changed the workgroup name on the Win 7 machine to match.
    This change did not affect the ping status - I can still ping by both name and IP address from the Win 7 machine, and still only the IP address works from the XP machine.  However, now SSMS on the Win 7 machine no longer sees the XP machine!  Trying
    to log in with either the machine name and the IP address, I now get a "timeout expired" message, and the SSMS login browser does not show the XP machine on the network.
    Any pointers on where to look for the cause of this problem would be very welcome.

    There was some problem (bug?) with the remote connections flag on the Win 7 server.  Someone had posted in the comments to a technet article that unchecking the remote connections box, restarting the server, then re-checking it helped them.  I
    tried it, and that fixed the problem with the Win 7 machine being unable to see the XP machine.
    Olaf's suggestion about the Hosts file fixed the problem with the XP machine having to use the IP address - now it can connect by name as well.
    Now I just have left the problem of a broken subscription to my replication, but that's a separate issue so I'll consider this thread closed.  Thanks to everyone who offered suggestions.

  • Resolution issue with macbook pro 13 (late 2013) and dell u2711

    I have a Dell U2711 (native resolution 2560x1440) that I use without issue with a macbook pro late 2007 (running 10.10.x), various iMacs and Macbook air 2011 running 10.10. When I say without issue, the display works at its native resolution.
    Last week we got a MacBook Pro 13in, late 2013 model.
    If I connect this macbook via either thunderbolt connection to the u2711 using either DVI port on the dell, the maximum resolution that I can use is 1920x1080. I am using apple mini displayport to DVI adaptors (I have tried 2 different ones and 2 different DVI cables, with no improvement). Clicking option + scaled in sys prefs does not give the native resolution as an option.
    However, I just discovered that if I use a DVI to HDMI adaptor and I connect the macbook to the display I get the full native resolution without issue (2560x1440).
    I have zapped the pram, powered down the display etc etc etc and it made no difference.
    I would prefer to use the mini DIsplayPort to DVI adaptor rather than HDMI, any suggestions appreciated.
    TIA.

      Reset PRAM.   http://support.apple.com/kb/PH18761
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
      Start up in Safe Mode.  http://support.apple.com/en-us/HT1564
    Best.

  • SAP BW structure/table name change issue with BODS Jobs promotion

    Dear All, One of my client has issue with promotion of BODS jobs from one environment to another. They move SAP BW projects/tables along with BODS jobs (separately) from DEV to QA to Prod.
    In SAP-BW the structures and tables get a different postfix when they are transported to the next environment.  The promotion in SAP-BW (transport) is an automated process and it is the BW deployment mechanism that causes the postfixes to change.  As a result with the transport from Dev to QA in SAP-BW we end up with table name changes (be they only suffixes), but this does mean that when we deploy our Data Services jobs we immediately have to change them for the target environments.
    Please let me know if someone has deployed some solution for this.
    Thanks

    This is an issue with SAP BW promotion process. SAP BASIS team should not turn on setting to suffix systemid with the table names during promotion.
    Thanks,

  • Second monitor detection and resolution issue with iMac

    Hi All,
    long time reader here, got a lot of helpful tips, thanks to all who post!!
    I have a 24" iMac, Intel based, with OSX 10.5.8.
    I bought a Viewsonic 22" monitor to use along side my iMac when using CS4 and I do a lot of photography. Now the problem is that sometimes my iMac recognizes it as VA2213w and other times it see it as VGA monitor. When is sees it as the VGA monitor the resolution changes a bit, even though it has it on its highest setting 1920x1080 @60hz. My tool pallets on the screen are a bit fuzzy, readable but not the best. I'm using a mini dvi to VGA adaptor as the Viewsonic only has a VGA plug. Could this be the issue? As I have read a lot of the problems here and they seem to be all pointing to the adaptor. If so then why does my iMac sometimes see it as VA2213w monitor and then on other times as VGA. I'm doing nothing to the display other than switching on in the morning.
    There doesn't seem to be any consistency! Its driving me mad. I can't seem to get it back to recognize the display as VA2213. I have clicked on detect displays etc etc.
    It was working fine all week and then suddenly last night it went back to seeing it as a VGA monitor only. Any help would be appreciated. I have no cursor issues, just the resolution and monitor detection.
    Regards
    Fergul

    Hi All,
    Well the issue seems to be the cable. I had an older TFT monitor that I was using and when I bought the above viewsonic, I just simply connected it to the existing cable. It wasn't till I was about to send the monitor back for one that had a DVI connection that I decided to use the VGA cable that came with the new monitor. What can I say, there hasn't been an issue since my last post which was a few weeks ago. Even when the iMac goes to sleep and awaken, no probs. Thanks to those that posted, its appreciated!
    So far so good.
    Take care.

  • C++ mangled name linkage issue with 12.4 beta

    Hi,
    Thanks for your help. I've almost got a working binary compiled with 12.4 beta.
    The remaining issue is a linkage issue. This code compiles and links fine with 12.3, and has done for years, and also gcc and clang. However, 12.4 beta appears to generate the wrong mangled name. Here's what 12.3 generates, and then 12.4, as shown by "nm -C":
    $ nm -C libfoo.a | grep -i AppendFormattedV
    [119]   |          7184|         149|FUNC |GLOB |0    |20     |MutableString&MutableString::AppendFormattedV(unsigned,const char*,__va_list_element(&)[1])
                                                           [__1cNMutableStringQAppendFormattedV6MIpkcraBnR__va_list_element__r0_]
    $ nm -C libfoo.a | grep -i AppendFormattedV
    [99]    |         12656|         206|FUNC |GLOB |0    |21     |_ZN13MutableString16AppendFormattedVEjPKcRA1_Ut98_
    and this causes the program to fail to link. Interestingly, it's looking for a slightly different name (... Ut96 versus Ut98 at the end of the mangled name)
    $ make release
    Undefined                       first referenced
    symbol                             in file
    _ZN13MutableString16AppendFormattedVEjPKcRA1_Ut96_ ../../../libfoo.a(somecode.o)
    ld: fatal: symbol referencing errors. No output written to program.exe
    The method's name is:
    MutableString& AppendFormattedV( u_int max_len, const char* format, va_list &arg_list );
    Any ideas what's going on? Another new bug? The mangling format appears to have changed between 12.3 and 12.4, but I assume that's incidental.
    Does that fact that "/usr/ccs/bin/nm" fails to demangle it mean the mangled named is being written incorrectly to the object file during compilation?
    Thanks,
    Jonathan.

    > "/usr/ccs/bin/nm" fails to demangle
    Demangler installed on Solaris by default was unable to process all kinds of gcc-style-mangled names.
    Demangler in Beta is updated to handle all those names but it does not help your system 'nm'.
    You can use c++filt that is part of Beta to demangle it.
    > Ut96 versus Ut98
    Ut stands for "unnamed type".
    It seems that va_list presence in signature leads to unstable mangling.
    Converting it to something else might help. Say, wrap into the struct with some name.
    regards,
      Fedor.

  • Sbs2008 seems to want to ping everything in IPv6 and cannot see a lot of hosts by DNS name - causing issues with RWW and Connect to My Computer

    HI,
    we have an SBS2008, has been working fine for a long time, don't know when or why this issue has started.
    A user couldn't connect to PC using RWW - so I checked rdp to that pc from the server and also couldn't rdp to pc - checked ping and couldn't find host = no DNS (although there IS an entry in DNS).  Ping by IP is fine 192.168.10.114
    Added host entry for this PC and all works fine 
    BUT...
    there are other users with the same problem, and when i ping other devices by name from the SBS it either can't see them, or it uses IPv6 - something i think i remeber us disabling (with the help of Microsofdt Support) year sago when the server went in,
    and had internet DNS issues.
    I have tried flushing dns cache on server to no avail.
    All PCs show in the SBS console as status "unknown" which i have seen before with DNS issues.
    can anyone help?
    Thanks,
    JJ

    Hi,
    Lets make sure we are running Single NIC on the server. DNS pointing to Servers IP Address itself. Disable TaskOffloading and Receive Side Scaling on the NIC and reboot the server.
    Note - Don't disable IPV 6
    If you have any further queries you can call me - 214-347-7988214-347-7988
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd - Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Package/Class name resolution issue

    Hey guys!
    I have an application called Infused. I also have a package called Managers with a class called DataManager which extends HTTPService.
    In a function in DataManager I need to call a public function that exists in Infused.
    Now, if the application is called Infused, then it's default class must be called Infused too, right?
    But when I called Infused.loginResult(evt) I get the error: Access of possibly undefined method loginResult through a reference with static type Class.
    I assumed the applications class would be in the global namespace and accessible. Am I wrong? And if so how can I call the function?
    Also, in the applications main class I have a number of functions called xxxResult which I need to call depending on a string that is passed in to the class request function. So the request function may receive 'login', and so the function to call in Infused would be 'loginResult'.
    How can I call the function based on this string? I know I could do Class[functionName]() if the function where in the same class, but will the answe to my first question lead to the obvious solution for the second?
    I am a PHP5 OOP developer learning Flex, so please forgive my dumbassness
    Thanks for any help.
    Paul.

    But when I called Infused.loginResult(evt) I get the error: Access of
    possibly undefined method loginResult through a reference with static
    type Class.
    You can't call instance methods like that. You'd need to make the method static, or alternately, call Infused(Application.application).loginResult(evt). After you make either change, you should be able to use the ['functionName']() approach.
    Keep in mind, though, that you're coupling your DataManager to your application with this approach. This might be fine for a small app, but take a look at Mate (or some of the other MVC frameworks) to see how to reduce or avoid this sort of coupling.

  • Screen Resolution issue with most third party Apps

    I have noticed that the screen resolution on my new iPhone 6 is not the same across the apps. For example when I open Facebook, the fonts seems to be like a little blurred and the background appears blurred. I am sure the third party apps need to work with the new iPhone to get it fixed. But just wanted to make sure that there is no need to do anything at this point. These apps are making the new iPhone screen resolution look sub-standard which is in no way Apple's fault. These Apps need to grow up faster and release updated versions before the users start cursing them for lagging behind lol..
    On the other hand the Apps designed by Apple work perfectly fine!
    The new iPhone 6 is beautiful! Thank you Apple! I love you.

    I can't help with the problem, since I don't have a laptop or second monitor, but if you want to report this to Apple, send a bug report (or enhancement request) via its Bug Reporter system. Join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report/enhancement request. You'll get a get a Bug ID number; thus, starting a dialog directly with engineering.

  • Monitor Resolution Issue with Windows 7

    Hi there,
    I recently did a clean install of windows 7 64bit and when I hooked up my laptop (T400 - 6474 CTO) to my Samsung Syncmaster 2253bw I could not adjust the screen resolution to the monitor's native resolution of 1650x1050.
    Windows only recognizes the monitor as a generic PnP monitor and the max resolution available for me to select is 1280x800.
    I have used the advanced function to update my monitor drivers but I have a feeling I still don't have the right driver.  Samsung sent me to Lenovo - please help!
    Thanks!

    did you reboot?
    are you extending or mirroring laptop screen? try toggling back and forth. extending should give you full res but often mirroring does not...
    trekuhl

  • HT5313 Does this fix the display resolutions issue with he 24" iMac?

    10.7.4 only allows 2 resolutions - neither correct - on the 24" iMac. Does 10.7.5 fix this?

    and I must have sent 20+ crash reports
    if you have crash reports, then you have a different problem than the one that freezes 20" imacs while scrolling in iTunes, most likely you have a corrupted update, or corrupted iTunes data...
    both can be deduced, by a clean install from your original system disks... (after you back up everything, and make sure you have it all, and it is good data)...
    the simplest thing to try is to put your iTunes library somewhere else... (a back up would be a good place)...
    then reinstall from your system disks, then download the combo updater, and update from that to 10.5.6... once you have that, only put a couple pieces of data into your iTunes library, and use that for a while to see if you have a crash....
    if no crashes, then it was either a corrupted install, or corrupted data in your iTunes library...
    if no crashes for a while, put 1/4 of your iTunes library back where it is supposed to be... and keep using it to see if there are crashes...
    if you do get a crash after moving anything in, take it back out, and check for a while for crashes...
    then you can isolate corrupted data that way.

  • Resolution issues with Photoshop CS2

    I work for a fashion wholesaler. I am currently in the process of completely a line list to sent out to our clients. The producer of our product has sent me their complied line list, but because we are the canadian distributor we have to edit the line list. I have gone through changing prices and images. I have saved the file the exact same way our the last girl (doing this job) would save the file (as a PDF 1a. 2001) and the image becomes pixellated when viewing in Reader. The original file is also a PDF. I have tried changing the resolution, saving the file different ways and nothing works. I even tried opening the file, not changing a thing, saving it, and opening it in reader to have the file pixelated. The original file is crystal clear when opened directly in reaer. I do not understand what I have done in order to cause such poor image quality. Any suggestions?

    The OP probably has the suite that includes Acrobat and Photoshop. I believe only the images can be altered using the Photoshop Application. I don't know if this can be done in Elements. I've never done this which is why I didn't try to answer the OP directly.
    Here's an article I found about editing PDFs in Arcrobat + Photoshop CS3...Photoshop CS3 steps are on Page 2.
    http://www.graphic-design-employment.com/how-to-edit-pdf.html
    Article editing PDFs in Acrobat + Photoshop Illustrator:
    http://mapaspects.org/how-edit-pdf-files-illustrator-or-photoshop

  • 2048x1280 Resolution Issues in 30" Display?

    Anyone hoping for a fix to the broken 2048x1280 resolution issue with the older 30" Cinema display prepare to be disappointed... it's still broke in 10.6.5 .... sheesh Apple, is this so hard to fix?

    BrandHOUSE wrote:
    G'day,
    I've just upgraded to Acrobat 9.2 this arvo and I immediately noticed that a PDF created as screen resolution displays in a very poor quality. Yes, it's a low res PDF, but everything within the PDF displays very badly. Have I maybe missed something that has changed in Preferences or is it something else?
    I am concerned as all work is sent to clients via a PDF for approval etc. and that they might feel that my artwork is of inferior quality due to the way PDFs now seem to display under Acrobat 9.2
    Thanks in advance for any comments or help.
    Go to Preference and to Page Display:
    Check the part about the resolution and see if it matches the resolution of your display.
    The the resolution of which you view a PDF on screen doesn't necessarily have to do with how it looks when printed. I just updated 9.2 and open a PDF and I didn't see any problems on my machine.
    (Please note information is given by an Experienced User of Acrobat. I am not an employee of Adobe.)

Maybe you are looking for

  • How can I change the apple ID on my iPhone to clear all contents and installation?

    I still have my iPhone 4s, Which I stopped using when the screen died. I bought a new iPhone 5s. Since, I've changed my Apple ID main e-mail address. Today I had the screen of the old 4s fixed. Now I want to clear all contents and installation so tha

  • Cannot generate AWR/ADDM reports in Oracle 10g

    Hi, We are running 10.2.0.3.0 and troublshooted the performance problem for some queries. But when tried to run AWR/ADDM reports from OEM and got the following messages: Insufficient Data in Interval. For displaying data on this page, two historical

  • I have an HP photosmart c4580 printer that is not working properly.

    It will only print half the page and sends an error to the print queue. When I troubleshoot it reports that the problem has been fixed of a "print job in the print queue was preventing other print jobs from being done". I can print a test page with n

  • Export from aperture 3 to external hard-drive as jpg files

    I have about 40,000 photos of my children that are organized in aperture.  I presently have each event (birthday, trip to park etc.) into projects by date.  Then all the projects are in a folder labeled the year they occurred.  I would like to backup

  • App Store can't find the update of iPhoto/iMovie

    Yesterday I loaded OS X Mavericks (before I had Mountain Lion). I also use iPhoto/iMovie (original version nothing cracked) since Leopard.. But actually I can't update to the latest version of iPhoto and iMovie. If I open the App Store -> Update; the