How do I know how many ECALs I need to purchase for my MOSS 2007 environment?

Hi everyone,
I am trying to determine how many Users in my environment need an ECAL, is there some was i can get a list of the users?

Thats what I thought. You may also want to read the following blog. This will again prove the point that you must talk to MS licensing Rep but at the same time you can start thinking about things you need to do at your end if you are able to use Mix mode
licensing.
Mixing SharePoint Standard CALs and Enterprise CALs on the same farm
Amit

Similar Messages

  • How do I know how many bytes it has read so far ?

    Like in a FileInputStream.read(byte [] b) method. How do I know how many bytes have been read into b so far ? Thanks!

    You can't directly as the method block, however it return the number of bytes that could be read. To achieve what you want I would create a wrapper class that would override read(byte[] b) and process it byte by byte with:
    int size = b.length;
    for(int i = 0; i < length; i++)
        int r = wrapped.read();
        if( r != -1 )
            b[i] = (byte)r;
            readSoFar++;
    }

  • User Profile Services:How get to know how many user are using my site.

    Hi,
    User Profile Services:How get to know how many user are using my site.
    Recently i have done migration sharepoint 2010 to sharepoint 2013,I did not migrate USer profile services because less user are using user profile here,but i need to know how many few uer are using my site for data store.
    Is any why we can get to know  user name who are using my site document library and other things.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

    Fallowing command shows only count of my site user ,I need to know how many upload data on my site
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • How do I know how many JFrames has opened ?

    Hi,
    I've got an application which has a main form (JFrame).
    Inside this main form there are buttons which opens others JFrames.
    When I close the main form I need to show how many others Jframes has opened.
    How do I know how many Jframes has opened in my whole application ?
    and
    How can I get them ?
    Can someone help me, please ?
    Thanks.
    wmiro.

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FrameTest
        static JLabel label;
        static int
            frameCount = 0,    // number of visible frames
            frameNumber = 0;   // consecutive frame number
        public static void main(String[] args)
            label = new JLabel("frame count = 0", JLabel.CENTER);
            JButton addButton = new JButton("add frame");
            addButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    makeNewFrame(++frameCount);
                    label.setText("frame count = " + frameCount);
                    label.repaint();
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.fill = gbc.HORIZONTAL;
            panel.add(label, gbc);
            JPanel northPanel = new JPanel();
            northPanel.add(addButton);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(northPanel, "North");
            f.getContentPane().add(panel);
            f.setSize(175,120);
            f.setLocation(50,50);
            f.setVisible(true);
        private static void makeNewFrame(int count)
            final JFrame f = new JFrame(String.valueOf(++frameNumber));
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    reportFrameClosing();
                    f.dispose();
            f.getContentPane().add(new JLabel("frame " + frameNumber));
            f.setSize(140,70);
            f.setLocation(175 + count*40, 120 + count*80);
            f.setVisible(true);
        public static void reportFrameClosing()
            frameCount--;
            label.setText("frame count = " + frameCount);
            label.repaint();
    }

  • How do you know how many duke dollors you have?

    how do you know how many duke dollors you have?

    you click on your name and it should show you how many duke dollars you currently have...

  • How do we know how many assignments

    Hi all
    How do we know how many assignments(Secondary assignment) doe’s particular employee is having. Please tell me navigation path .
    Thanks for your time

    From People > Enter and Maintain, Query for your Employee. Click on assignment button and then click on down arrow to find all the secondary assignments.

  • How can I know how many processors do I need for a new SQL Server machine?

    My company intend to buy a new server and will dedicate that for SQL Server which will serve an in-house developed application.
    How can we know how many processors are enough to buy?
    I know that each SQL Server edition and version has it's different limitation of the number of processors it can support, for example SQL Server 2012 Standard Edition can support up to 4 sockets or 16 cores per SQL Server Instance, but this does not mean
    that I have to buy 4 physical CPUs. two could be enough. how can I know? 

    How can we know how many processors are enough to buy?
    I know that each SQL Server edition and version has it's different limitation of the number of processors it can support, for example SQL Server 2012 Standard Edition can support up to 4 sockets or 16 cores per SQL Server Instance, but this does not mean
    that I have to buy 4 physical CPUs. two could be enough. how can I know? 
    This is off topic question how can we answer it. We even dont have any knowledge about your application.
    Please speak to licensing specialist about servers and cores below link will give you more information.
    https://msdn.microsoft.com/en-us/library/ms143760.aspx?f=255&MSPPError=-2147217396
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • How can I know how many people subscribded to my podcast ?

    How can I know how many people subscribded to my podcast ?
    Is there a tool or something ?
    See ya !!
    Steph

    This depends on where you have your podcast hosted. Some ISPs provide logs of access to pages and downloads: if your podcast is embedded in a web page then some ISPs provide facilites for a hits counter (though this wouldn't necessarily show how many people had bothered to listen to it).
    However if your podcast is hosted on .Mac then there are no such facilities provided, and it's not something you can do from your end, it would have to be on the server. Similarly the iTunes store doesn't provide any way of tracking subscribers.

  • How can i know how many visitors are online now?

    i'm making an application like forum...
    but what i cant do,, is how can i know how many persons are viewing my forum (members, and guests)???

    It's not possible to know with absolute certainty because HTTP is a stateless protocol.
    The HttpSession object, however, gives you a lot of information that can bring you pretty close.
    On my site, I have a sample application that uses filters and a context scoped map to track user information and make it available to an admin servlet.
    It shows the user's name, IP, session number, how long they've been on, how long it's been since the last time they've hit the site, how long before their session expires (if they don't hit the site again), and what page they were on last.
    You can download this app at:
    http://simple.souther.us
    Look for SessionMonitor.

  • How do I know how much I have selected in GB

    When I try to sync I get an error telling me there's not enough room on the iPod. How do I know how many GB I have selected in iTunes before I hit sync? Is just a guessing game, or is there a way to find this out?
    Thanks.

    If your library is larger than the capacity of the iPod the use the update option 'Sync Music - Selected playlists'. When you open the playlist it will tell you at the bottom of the main window how much is in the playlist in terms of song, hours and GBs.
    Open iTunes and create a playlist to update your iPod from, call it -My iPod for example (the dash will position it at the top of the playlists in Sources). Drag whatever content you want to have into the playlist. Now connect your iPod and when it appears in the Source list click on the iPod icon to bring up the preference tabs in the main pane. Go to the Music tab and choose Sync Music and the Selected playlists radio button. Choose the playlist you just made from the selection and click Apply. You can also sync from any existing playlists by choosing the same setting, you just need to make sure that the size of the playlists don't exceed the capacity of your iPod by looking at the information showing in the window for each one:
    How to create a Smart Playlist with iTunes
    Syncing Music to iPod
    Syncing selected playlists is just like syncing your whole library only on a smaller scale and more "selectively". When your iPod is is set to sync selected playlists it automatically picks up any changes you made to that playlist in iTunes since you last connected. Anything you added to the playlist will be added to the iPod, anything you deleted from it will be deleted from the iPod. In other words the iTunes playlist and the iPod are kept "in sync".

  • HT4623 I lost my apps and iTunes after a restore, but it says there isn't enough space on the iPhone 4. How do I know how much space needs to be freed up? I keep deleting photos and videos, but I'm still getting the same message.

    I did an iphone 4 software update. It then asked me to do a "restore" in order for me to be able to use the latest iTunes. I did a "restore" to "factory settings" (this was the only option listed) thinking I'd be able to sync later and get everything back and ended up losing all my purchased apps and iTunes. When I open iTunes, "Welcome to your new iphone" and it says I can re-do the "restore" and choose my lastest update. I assume this will give me back my apps and iTunes. When i choose to do this, it says there isn't enough space on the iPhone. How do I know how much space needs to be freed up? I keep deleting photos and videos from the phone, but I'm still getting the same message every time I re-try. I don't want to delete everything, but I don't know what to do...? Thanks!

    Thanks but I think it has something to do with the 'restore'. in the newest iTunes 11, when I click on the tab "iphone", it redirects me to the "welcome to your new iphone" page and asks about doing a 'restore'. I already did a 'restore', but it went to the original factory settings and I want to 'restore' to my lastest back up as of April 12. When I choose that option, it says my iphone doesn't have enough space. I don't know how much I need to delete in order to make it work. I've deleted lots, but it only has 4.1 GB available. I'm not sure why this isn't enough to do a 'restore'. I don't want to delete all my photos and videos, but maybe I will have to?...7.7GB is used up for that. I can't sync or do ANYTHING...

  • How do I know how much storage I have left available on my iCloud?

    How do I know how much storage I have left available on my iCloud? I know there has to be a way to know this.

    Welcome to the Apple Community.
    settings > iCloud > storage & back up > manage.....

  • How can I know my gift macbook pro date of purchase

    How can I know my gift macbook pro date of purchase?

    Ask for the receipt or the date from the person who purchased it.
    You can try this as well:
    Decode Mac Serial Number
    How to find the serial number of your Apple hardware product

  • How do I know how much is on my itunes gift card?

    How do i know how much is left on my itunes gift card?

    Look at the top right corner of the itunes page by your user id.

  • HT5035 How do you know how much your code still has

    I got a card that has a cod how do you know how much is still in the card

    I meant code

Maybe you are looking for