Posts

Showing posts from May, 2018

Use Outlook 2016 for Mac with Kerberos authentication

Issue---While working on any office file one pup up will come (Kerberos authentication) Resolved-  >Update latest office  >We have to add below line into our bypass proxy under network setting. System preferences>Network>Select connected internet>Advanced>Proxies>Select Secure web proxy>Under by pass proxy setting add below line and click on use passive ftp mode. Restart the device. omextemplates.content.office.net office15client.microsoft.com

iPad not detecting after login screen

if iPad is detecting on user option but not detecting after selecting and put the password. No1- Try with different Apple device and other device to check the USB port of laptop (USB Port Working ) No2- Try Connecting iPad with different laptop windows/ Mac ( iPad detecting) No3- Restore the iPad with latest software it will detect on mac after putting password.  

How to import windows outlook mail into Apple Mail

Windows mail content  .PST so we have change the format as Apple mail will support .mbox. If Your Outlook is working in windows then below steps will help If you need to migrate from Outlook to MBOX, MessageExport can help. MessageExport is an add-in for Microsoft Outlook that can convert your Outlook .pst to .mbox. Finally, select your messages or folders, choose MBOX as the target format from the MessageExport toolbar, and then click the "Export" button. MessageExport will begin converting the email stored in your Outlook .PST file to MBOX format. You can then import your MBOX file into other email clients, such as Thunderbird. If Your Outlook is not working in windows then below steps will help Import the .pst mail box into working outlook and follow above steps ,  if there is no windows and outlook then follow below steps. Download below software from App store and convert  into .mbox from .pst. and follow onscreen steps. For mac https://itunes.apple.com/in/app/pst-c...

Reset permissions

Image
Reset permissions If the issue started after changing the permissions of items in your home folder, reset permissions: From the Finder menu bar, choose Go > Home. Your home folder opens. Choose File > Get Info. An Info window for your home folder opens. If the Sharing & Permissions section at the bottom of the window isn't open, click the triangle   in that section to open it. If the Lock button at the bottom of the window shows a closed lock   , click the lock and enter an administrator name and password. Click the Action menu   in the bottom corner of the window, then choose “Apply to enclosed items.” Click OK to confirm the action. A progress bar appears at the top of the window.   When the progress bar completes, open the Terminal app, which is in the Utilities folder of your Applications folder. Paste or type this command in Terminal, then press Return: diskutil resetUserPermissions / `id -u` ...

Hide All Desktop Icons in Mac OS X

defaults write com.apple.finder CreateDesktop -bool false killall Finder Show All Desktop icons defaults write com.apple.finder CreateDesktop -bool true;killall Finder;say icons visible  

How to view user library permanently

There is a command in terminal by using below command user/library will visible permanently chflags nohidden ~/Library/

How to convert .app to .iso in high sierras

Note- High sierra .app application should be in application folder. hdiutil attach /Applications/Install\ macOS\ High\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -mountpoint /Volumes/highsierra hdiutil create -o /tmp/HighSierraBase.cdr -size 7316m -layout SPUD -fs HFS+J hdiutil attach /tmp/HighSierraBase.cdr.dmg -noverify -mountpoint /Volumes/install_build asr restore -source /Applications/Install\ macOS\ High\ Sierra.app/Contents/SharedSupport/BaseSystem.dmg -target /Volumes/install_build -noprompt -noverify -erase rm /Volumes/OS\ X\ Base\ System/System/Installation/Packages cp -R /Volumes/highsierra/Packages /Volumes/OS\ X\ Base\ System/System/Installation hdiutil detach /Volumes/OS\ X\ Base\ System/ hdiutil detach /Volumes/highsierra/ mv /tmp/HighSierraBase.cdr.dmg /tmp/BaseSystem.dmg # Restore the 10.13 Installer's BaseSystem.dmg into file system and place custom BaseSystem.dmg into the root hdiutil create -o /tmp/HighSierra.cdr -size 8965m -layout SP...